Rarible · Schema

EncodedEthOrder

NFTNon-Fungible TokensMarketplaceAggregatorMultichainEthereumPolygonArbitrumFlowWeb3BlockchainCollectionsOrder BookTradingIndexer

Properties

Name Type Description
@type string
orderHash string
signHash string
transferProxy object
View JSON Schema on GitHub

JSON Schema

EncodedEthOrder.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "EncodedEthOrder",
  "type": "object",
  "required": [
    "orderHash",
    "signHash"
  ],
  "properties": {
    "@type": {
      "type": "string",
      "enum": [
        "ETH_ORDER_ENCODE"
      ]
    },
    "orderHash": {
      "type": "string"
    },
    "signHash": {
      "type": "string"
    },
    "transferProxy": {
      "$ref": "#/components/schemas/UnionAddress"
    }
  }
}