Interface ExchangesApiGetExchangesRequest

interface ExchangesApiGetExchangesRequest {
    pageSize?: number;
    cursor?: string;
    orderBy?:
        | "status"
        | "id"
        | "exchange"
        | "amount"
        | "transfer_id";
    direction?: "asc" | "desc";
    id?: number;
    walletAddress?: string;
    status?:
        | "created"
        | "pending"
        | "completed"
        | "failed"
        | "waitingPayment"
        | "timedOut";
    provider?: "moonpay" | "layerswap";
    transferId?: string;
}

Hierarchy

  • ExchangesApiGetExchangesRequest
    • ExchangesApiGetExchangesRequest

Properties

pageSize?: number

Page size of the result

ExchangesApiGetExchanges

cursor?: string

Cursor

ExchangesApiGetExchanges

orderBy?:
    | "status"
    | "id"
    | "exchange"
    | "amount"
    | "transfer_id"

Property to sort by

ExchangesApiGetExchanges

direction?: "asc" | "desc"

Direction to sort

ExchangesApiGetExchanges

id?: number

Transaction ID

ExchangesApiGetExchanges

walletAddress?: string

Ethereum address of the user who created transaction

ExchangesApiGetExchanges

status?:
    | "created"
    | "pending"
    | "completed"
    | "failed"
    | "waitingPayment"
    | "timedOut"

Transaction status

ExchangesApiGetExchanges

provider?: "moonpay" | "layerswap"

Provider name

ExchangesApiGetExchanges

transferId?: string

Transfer ID

ExchangesApiGetExchanges