Documentation
    Preparing search index...

    Interface RpcNftItem

    TEP-62 NFT transfer in RPC wire form.

    interface RpcNftItem {
        attachAmount?: string;
        customPayload?: string;
        forwardAmount?: string;
        forwardPayload?: string;
        newOwner: string;
        nftAddress: string;
        queryId?: string;
        responseDestination?: string;
        type: "nft";
    }
    Index

    Properties

    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.

    forwardAmount?: string

    Nanocoins forwarded to the new owner. Defaults to "1" nanoTON.

    forwardPayload?: string

    Raw one-cell BoC forward_payload, base64-encoded.

    newOwner: string

    New owner address.

    nftAddress: string

    NFT item contract address.

    queryId?: string

    Application-defined query_id for the transfer body.

    responseDestination?: string

    Where to refund excess TON. Defaults to the sender.

    type: "nft"

    Item discriminator.