Interface TonTransactions

Represents a list of Toncoin transactions.

interface TonTransactions {
    @type: "tonTransactions";
    next_offset: string;
    ton_amount: number;
    transactions: TonTransaction[];
}

Properties

@type: "tonTransactions"
next_offset: string

The offset for the next request. If empty, then there are no more results.

ton_amount: number

The total amount of owned Toncoins.

transactions: TonTransaction[]

List of Toncoin transactions.