Rarible · Schema
SendToChainActivity
NFTNon-Fungible TokensMarketplaceAggregatorMultichainEthereumPolygonArbitrumFlowWeb3BlockchainCollectionsOrder BookTradingIndexer
Properties
| Name | Type | Description |
|---|---|---|
| @type | string | |
| owner | object | |
| to | string | |
| chainId | object | |
| contract | object | |
| collection | object | |
| itemId | object | |
| value | object | |
| transactionHash | string | |
| blockchainInfo | object |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "SendToChainActivity",
"type": "object",
"properties": {
"@type": {
"type": "string",
"enum": [
"SEND_TO_CHAIN"
]
},
"owner": {
"$ref": "#/components/schemas/UnionAddress"
},
"to": {
"type": "string"
},
"chainId": {
"$ref": "#/components/schemas/BigInteger"
},
"contract": {
"$ref": "#/components/schemas/ContractAddress"
},
"collection": {
"$ref": "#/components/schemas/CollectionId"
},
"itemId": {
"$ref": "#/components/schemas/ItemId"
},
"value": {
"$ref": "#/components/schemas/BigInteger"
},
"transactionHash": {
"type": "string"
},
"blockchainInfo": {
"$ref": "#/components/schemas/ActivityBlockchainInfo"
}
},
"required": [
"@type",
"to",
"itemId",
"owner",
"value",
"transactionHash",
"chainId"
]
}