Interface TonTransaction

Represents a transaction changing the amount of owned Toncoins.

interface TonTransaction {
    @type: "tonTransaction";
    date: number;
    id: string;
    is_refund?: boolean;
    ton_amount: number;
    type: TonTransactionType;
}

Properties

@type: "tonTransaction"
date: number

Point in time (Unix timestamp) when the transaction was completed.

id: string

Unique identifier of the transaction.

is_refund?: boolean

True, if the transaction is a refund of a previous transaction.

ton_amount: number

The amount of added owned Toncoins; negative for outgoing transactions.

Type of the transaction.