Interface DepositsApiListDepositsRequest

interface DepositsApiListDepositsRequest {
    pageSize?: number;
    cursor?: string;
    orderBy?: string;
    direction?: string;
    user?: string;
    status?: string;
    minTimestamp?: string;
    maxTimestamp?: string;
    tokenType?: string;
    tokenId?: string;
    assetId?: string;
    tokenAddress?: string;
    tokenName?: string;
    minQuantity?: string;
    maxQuantity?: string;
    metadata?: string;
}

Hierarchy

  • DepositsApiListDepositsRequest
    • DepositsApiListDepositsRequest

Properties

pageSize?: number

Page size of the result

DepositsApiListDeposits

cursor?: string

Cursor

DepositsApiListDeposits

orderBy?: string

Property to sort by

DepositsApiListDeposits

direction?: string

Direction to sort (asc/desc)

DepositsApiListDeposits

user?: string

Ethereum address of the user who submitted this deposit

DepositsApiListDeposits

status?: string

Status of this deposit

DepositsApiListDeposits

minTimestamp?: string

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

DepositsApiListDeposits

maxTimestamp?: string

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

DepositsApiListDeposits

tokenType?: string

Token type of the deposited asset

DepositsApiListDeposits

tokenId?: string

ERC721 Token ID of the minted asset

DepositsApiListDeposits

assetId?: string

Internal IMX ID of the minted asset

DepositsApiListDeposits

tokenAddress?: string

Token address of the deposited asset

DepositsApiListDeposits

tokenName?: string

Token name of the deposited asset

DepositsApiListDeposits

minQuantity?: string

Min quantity for the deposited asset

DepositsApiListDeposits

maxQuantity?: string

Max quantity for the deposited asset

DepositsApiListDeposits

metadata?: string

JSON-encoded metadata filters for the deposited asset

DepositsApiListDeposits