Interface TradesApiListTradesV3Request

interface TradesApiListTradesV3Request {
    partyATokenType?: string;
    partyATokenAddress?: string;
    partyBTokenType?: string;
    partyBTokenAddress?: string;
    partyBTokenId?: string;
    pageSize?: number;
    cursor?: string;
    orderBy?:
        | "created_at"
        | "transaction_id"
        | "party_a_sold_quantity"
        | "party_b_sold_quantity"
        | "timestamp"
        | "updated_timestamp";
    direction?: string;
    minTimestamp?: string;
    maxTimestamp?: string;
}

Hierarchy

  • TradesApiListTradesV3Request
    • TradesApiListTradesV3Request

Properties

partyATokenType?: string

Party A's (buy order) token type of currency used to buy

TradesApiListTradesV3

partyATokenAddress?: string

Party A's (buy order) token address of currency used to buy

TradesApiListTradesV3

partyBTokenType?: string

Party B's (sell order) token type of NFT sold - always ERC721

TradesApiListTradesV3

partyBTokenAddress?: string

Party B's (sell order) collection address of NFT sold

TradesApiListTradesV3

partyBTokenId?: string

Party B's (sell order) token id of NFT sold

TradesApiListTradesV3

pageSize?: number

Page size of the result

TradesApiListTradesV3

cursor?: string

Cursor

TradesApiListTradesV3

orderBy?:
    | "created_at"
    | "transaction_id"
    | "party_a_sold_quantity"
    | "party_b_sold_quantity"
    | "timestamp"
    | "updated_timestamp"

Property to sort by

TradesApiListTradesV3

direction?: string

Direction to sort (asc/desc)

TradesApiListTradesV3

minTimestamp?: string

Minimum timestamp for this trade, in ISO 8601 UTC format. Example: '2022-06-27T00:10:22Z'

TradesApiListTradesV3

maxTimestamp?: string

Maximum timestamp for this trade, in ISO 8601 UTC format. Example: '2022-06-27T00:10:22Z'

TradesApiListTradesV3