Documentation
    Preparing search index...

    Interface NftItem

    TEP-62 NFT transfer. The wallet builds the transfer#5fcc3d14 body addressed to the NFT item contract.

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

    Properties

    attachAmount?: string

    Nanocoins of TON to attach.

    customPayload?: string

    Raw one-cell BoC custom_payload, base64-encoded.

    forwardAmount?: string

    Nanocoins forwarded to the new owner.

    forwardPayload?: string

    Raw one-cell BoC forward_payload, base64-encoded.

    newOwner: string

    New owner address (friendly format).

    nftAddress: string

    NFT item contract address (friendly format).

    queryId?: string

    Application-defined query_id for the transfer body.

    responseDestination?: string

    Where to refund excess TON.

    type: "nft"