Export

TradeList

interface TradeList {
    data: Trade[];
    has_more: boolean;
    next_page: string;
    total_count: number;
}

Properties

data: Trade[]

Memberof

TradeList

has_more: boolean

True if this list has another page of items after this one that can be fetched.

Memberof

TradeList

next_page: string

The page token to be used to fetch the next page.

Memberof

TradeList

total_count: number

The total number of trades for the address in the wallet.

Memberof

TradeList