Documentation
    Preparing search index...

    Interface JettonItem

    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

    TON to attach for fees; wallet calculates if omitted.

    customPayload?: string

    Raw one-cell BoC encoded in Base64.

    destination: string

    Recipient address.

    forwardAmount?: string

    Nanotons to forward to destination.

    forwardPayload?: string

    Raw one-cell BoC encoded in Base64.

    master: string

    Jetton master contract address.

    queryId?: string

    Custom query ID for the transfer.

    responseDestination?: string

    Where to send excess; defaults to sender.

    type: "jetton"