Interface WithdrawalsApiListWithdrawalsRequest

interface WithdrawalsApiListWithdrawalsRequest {
    withdrawnToWallet?: boolean;
    rollupStatus?: string;
    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

  • WithdrawalsApiListWithdrawalsRequest
    • WithdrawalsApiListWithdrawalsRequest

Properties

withdrawnToWallet?: boolean

Withdrawal has been transferred to user's Layer 1 wallet

WithdrawalsApiListWithdrawals

rollupStatus?: string

Status of the on-chain batch confirmation for this withdrawal

WithdrawalsApiListWithdrawals

pageSize?: number

Page size of the result

WithdrawalsApiListWithdrawals

cursor?: string

Cursor

WithdrawalsApiListWithdrawals

orderBy?: string

Property to sort by

WithdrawalsApiListWithdrawals

direction?: string

Direction to sort (asc/desc)

WithdrawalsApiListWithdrawals

user?: string

Ethereum address of the user who submitted this withdrawal

WithdrawalsApiListWithdrawals

status?: string

Status of this withdrawal

WithdrawalsApiListWithdrawals

minTimestamp?: string

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

WithdrawalsApiListWithdrawals

maxTimestamp?: string

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

WithdrawalsApiListWithdrawals

tokenType?: string

Token type of the withdrawn asset

WithdrawalsApiListWithdrawals

tokenId?: string

ERC721 Token ID of the minted asset

WithdrawalsApiListWithdrawals

assetId?: string

Internal IMX ID of the minted asset

WithdrawalsApiListWithdrawals

tokenAddress?: string

Token address of the withdrawn asset

WithdrawalsApiListWithdrawals

tokenName?: string

Token name of the withdrawn asset

WithdrawalsApiListWithdrawals

minQuantity?: string

Min quantity for the withdrawn asset

WithdrawalsApiListWithdrawals

maxQuantity?: string

Max quantity for the withdrawn asset

WithdrawalsApiListWithdrawals

metadata?: string

JSON-encoded metadata filters for the withdrawn asset

WithdrawalsApiListWithdrawals