Interface TokensApiListTokensRequest

interface TokensApiListTokensRequest {
    pageSize?: number;
    cursor?: string;
    orderBy?: "symbol" | "contract_address" | "name";
    direction?: string;
    address?: string;
    symbols?: string;
}

Hierarchy

  • TokensApiListTokensRequest
    • TokensApiListTokensRequest

Properties

pageSize?: number

Page size of the result

TokensApiListTokens

cursor?: string

Cursor

TokensApiListTokens

orderBy?: "symbol" | "contract_address" | "name"

Property to sort by

TokensApiListTokens

direction?: string

Direction to sort (asc/desc)

TokensApiListTokens

address?: string

Contract address of the token

TokensApiListTokens

symbols?: string

Token symbols for the token, e.g. ?symbols=IMX,ETH

TokensApiListTokens