Interface TransfersApiListTransfersRequest

interface TransfersApiListTransfersRequest {
    pageSize?: number;
    cursor?: string;
    orderBy?:
        | "created_at"
        | "transaction_id"
        | "sender_ether_key"
        | "receiver_ether_key";
    direction?: string;
    user?: string;
    receiver?: string;
    status?: "success" | "failure";
    minTimestamp?: string;
    maxTimestamp?: string;
    tokenType?: string;
    tokenId?: string;
    assetId?: string;
    tokenAddress?: string;
    tokenName?: string;
    minQuantity?: string;
    maxQuantity?: string;
    metadata?: string;
}

Hierarchy

  • TransfersApiListTransfersRequest
    • TransfersApiListTransfersRequest

Properties

pageSize?: number

Page size of the result

TransfersApiListTransfers

cursor?: string

Cursor

TransfersApiListTransfers

orderBy?:
    | "created_at"
    | "transaction_id"
    | "sender_ether_key"
    | "receiver_ether_key"

Property to sort by

TransfersApiListTransfers

direction?: string

Direction to sort (asc/desc)

TransfersApiListTransfers

user?: string

Ethereum address of the user who submitted this transfer

TransfersApiListTransfers

receiver?: string

Ethereum address of the user who received this transfer

TransfersApiListTransfers

status?: "success" | "failure"

Status of this transfer

TransfersApiListTransfers

minTimestamp?: string

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

TransfersApiListTransfers

maxTimestamp?: string

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

TransfersApiListTransfers

tokenType?: string

Token type of the transferred asset

TransfersApiListTransfers

tokenId?: string

ERC721 Token ID of the minted asset

TransfersApiListTransfers

assetId?: string

Internal IMX ID of the minted asset

TransfersApiListTransfers

tokenAddress?: string

Token address of the transferred asset

TransfersApiListTransfers

tokenName?: string

Token name of the transferred asset

TransfersApiListTransfers

minQuantity?: string

Max quantity for the transferred asset

TransfersApiListTransfers

maxQuantity?: string

Max quantity for the transferred asset

TransfersApiListTransfers

metadata?: string

JSON-encoded metadata filters for the transferred asset

TransfersApiListTransfers