Rarible · Schema
EthOrderSeaportDataV1
NFTNon-Fungible TokensMarketplaceAggregatorMultichainEthereumPolygonArbitrumFlowWeb3BlockchainCollectionsOrder BookTradingIndexer
Properties
| Name | Type | Description |
|---|---|---|
| protocol | object | |
| orderType | object | |
| offer | array | |
| consideration | array | |
| zone | object | |
| zoneHash | string | |
| conduitKey | string | |
| counter | integer | |
| nonce | object |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "EthOrderSeaportDataV1",
"type": "object",
"properties": {
"protocol": {
"$ref": "#/components/schemas/UnionAddress"
},
"orderType": {
"$ref": "#/components/schemas/EthSeaportOrderType"
},
"offer": {
"type": "array",
"items": {
"$ref": "#/components/schemas/EthSeaportOffer"
}
},
"consideration": {
"type": "array",
"items": {
"$ref": "#/components/schemas/EthSeaportConsideration"
}
},
"zone": {
"$ref": "#/components/schemas/UnionAddress"
},
"zoneHash": {
"type": "string"
},
"conduitKey": {
"type": "string"
},
"counter": {
"deprecated": true,
"type": "integer",
"format": "int64"
},
"nonce": {
"$ref": "#/components/schemas/BigInteger"
}
},
"required": [
"protocol",
"orderType",
"offer",
"consideration",
"zone",
"zoneHash",
"conduitKey"
],
"oneOf": [
{
"$ref": "#/components/schemas/EthOrderBasicSeaportDataV1"
}
]
}