Documentation
    Preparing search index...

    Interface RpcTonItem

    Wire-format structured items used inside JSON-RPC payloads and embedded-request expansion. These match the shape that travels over the bridge / URL — field casing follows the protocol (e.g. extra_currency snake_case).

    The rich, user-facing counterparts (with camelCase fields) live in the SDK.

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

    Properties

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