Interface GetTonTransactions

Returns the list of Toncoin transactions of the current user. Request type for Tdjson#getTonTransactions.

interface GetTonTransactions {
    @type: "getTonTransactions";
    direction: TransactionDirection;
    limit: number;
    offset: string;
}

Properties

@type: "getTonTransactions"

Direction of the transactions to receive; pass null to get all transactions.

limit: number

The maximum number of transactions to return.

offset: string

Offset of the first transaction to return as received from the previous request; use empty string to get the first chunk of results.