Rarible · Schema

SolanaAuctionHouseDataV1

NFTNon-Fungible TokensMarketplaceAggregatorMultichainEthereumPolygonArbitrumFlowWeb3BlockchainCollectionsOrder BookTradingIndexer

Properties

Name Type Description
@type string
fee integer
requiresSignOff boolean
auctionHouse object
View JSON Schema on GitHub

JSON Schema

SolanaAuctionHouseDataV1.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "SolanaAuctionHouseDataV1",
  "type": "object",
  "properties": {
    "@type": {
      "type": "string",
      "enum": [
        "SOLANA_AUCTION_HOUSE_V1"
      ]
    },
    "fee": {
      "type": "integer"
    },
    "requiresSignOff": {
      "type": "boolean"
    },
    "auctionHouse": {
      "$ref": "#/components/schemas/ContractAddress"
    }
  },
  "required": [
    "@type"
  ]
}