Rarible · Schema

PrepareOrderTxForm

NFTNon-Fungible TokensMarketplaceAggregatorMultichainEthereumPolygonArbitrumFlowWeb3BlockchainCollectionsOrder BookTradingIndexer

Properties

Name Type Description
maker object
taker object
amount object
payouts array Value of the payouts for the order
originFees array Value of the origin fees for the order
View JSON Schema on GitHub

JSON Schema

PrepareOrderTxForm.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "PrepareOrderTxForm",
  "type": "object",
  "required": [
    "maker",
    "amount",
    "payouts",
    "originFees"
  ],
  "properties": {
    "maker": {
      "$ref": "#/components/schemas/UnionAddress"
    },
    "taker": {
      "$ref": "#/components/schemas/UnionAddress"
    },
    "amount": {
      "$ref": "#/components/schemas/BigInteger"
    },
    "payouts": {
      "type": "array",
      "description": "Value of the payouts for the order",
      "items": {
        "$ref": "#/components/schemas/Payout"
      }
    },
    "originFees": {
      "type": "array",
      "description": "Value of the origin fees for the order",
      "items": {
        "$ref": "#/components/schemas/Payout"
      }
    }
  }
}