Market

type Market {
  _id: ID!
  app: ID
  address: String!
  name: String
  url: String
  uri: String
  logo: String
  ipfs: String
  assetType: String
  listFee: Float
  txFee: Float
  ownerShare: Int
  platformShare: Int
  providerShare: Int
  referralShare: Int
  extraShare: Int
  ownerDelegateShare: Int
  delegatorShare: Int
  platformFee: Float
  platformReceiver: [String]
  deployer: String
  owner: String
  platform: String
  provider: String
  delegator: String
  listerOnly: Boolean
  prepaidOnly: Boolean
  collectionOnly: Boolean
  collections: [String]
  chain: String
  credits: Int
  stat: JSONObject
  contractVersion: Int
  contractType: String
  visible: Boolean
  maxRoyalty: Int
  listingDuration: Int
  snapshotCooldown: Int
  lastSnapshot: Int
  hasProvider: Boolean
  lastSync: BigInt
  lastChainSync: BigInt
  createdAt: Time
  updatedAt: Time
}

Last updated