Documentation
    Preparing search index...

    Interface TonItem

    interface TonItem {
        address: string;
        amount: string;
        extraCurrency?: { [k: number]: string };
        payload?: string;
        stateInit?: string;
        type: "ton";
    }
    Index

    Properties

    address: string

    Destination address in friendly format.

    amount: string

    Amount in nanocoins as decimal string.

    extraCurrency?: { [k: number]: string }

    Extra currencies to send.

    payload?: string

    Raw one-cell BoC encoded in Base64.

    stateInit?: string

    Raw one-cell BoC encoded in Base64.

    type: "ton"