Documentation
    Preparing search index...

    Interface JettonItem

    TEP-74 jetton transfer. The wallet resolves the user's jetton-wallet address from master, builds the transfer body and attaches enough TON to pay for the jetton-wallet execution.

    interface JettonItem {
        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.

    attachAmount?: string

    Nanocoins of TON to attach to the jetton-wallet call.

    customPayload?: string

    Raw one-cell BoC custom_payload, base64-encoded.

    destination: string

    Recipient address (friendly format).

    forwardAmount?: string

    Nanocoins forwarded to the destination wallet — drives the transfer_notification to the recipient. Defaults to "1" nanoTON.

    forwardPayload?: string

    Raw one-cell BoC forward_payload, base64-encoded.

    master: string

    Jetton master contract address (friendly format).

    queryId?: string

    Application-defined query_id for the transfer body.

    responseDestination?: string

    Where to refund excess TON. Defaults to the sender.

    type: "jetton"