Documentation
    Preparing search index...

    Interface RpcJettonItem

    TEP-74 jetton transfer in RPC wire form.

    interface RpcJettonItem {
        amount: string;
        attachAmount?: string;
        customPayload?: string;
        destination: string;
        forwardAmount?: string;
        forwardPayload?: string;
        master: string;
        queryId?: string;
        responseDestination?: string;
        type: "jetton";
    }
    Index

    Properties

    amount: string

    Jetton amount in elementary units (decimal string).

    attachAmount?: string

    TON value to attach for transfer execution; wallet picks a default when omitted.

    customPayload?: string

    Raw one-cell BoC custom_payload, base64-encoded.

    destination: string

    Recipient address.

    forwardAmount?: string

    Nanocoins forwarded to the destination wallet. Defaults to "1" nanoTON.

    forwardPayload?: string

    Raw one-cell BoC forward_payload, base64-encoded.

    master: string

    Jetton master contract address.

    queryId?: string

    Application-defined query_id for the transfer body.

    responseDestination?: string

    Where to refund excess TON. Defaults to the sender.

    type: "jetton"

    Item discriminator.