Documentation
    Preparing search index...

    Interface RpcTonItem

    Native TON transfer in RPC wire form.

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

    Properties

    address: string

    Destination address in TEP-2 user-friendly format.

    amount: string

    Nanocoins to send, as a decimal string.

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

    TEP-92 extra currencies: currency_id → decimal amount string.

    payload?: string

    Optional one-cell BoC body, base64-encoded.

    stateInit?: string

    Optional one-cell BoC StateInit, base64-encoded.

    type: "ton"

    Item discriminator.