Rarible · Schema

ReceiveFromChainActivity

NFTNon-Fungible TokensMarketplaceAggregatorMultichainEthereumPolygonArbitrumFlowWeb3BlockchainCollectionsOrder BookTradingIndexer

Properties

Name Type Description
@type string
owner object
from string
chainId object
contract object
collection object
itemId object
value object
transactionHash string
blockchainInfo object
View JSON Schema on GitHub

JSON Schema

ReceiveFromChainActivity.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "ReceiveFromChainActivity",
  "type": "object",
  "properties": {
    "@type": {
      "type": "string",
      "enum": [
        "RECEIVE_FROM_CHAIN"
      ]
    },
    "owner": {
      "$ref": "#/components/schemas/UnionAddress"
    },
    "from": {
      "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",
    "from",
    "itemId",
    "owner",
    "value",
    "transactionHash",
    "chainId"
  ]
}