Skip to main content

TypeAlias.TransferNftParams

type TransferNftParams = {
contractAddress: Address;
standard: "ERC721" | "ERC1155";
to: Address;
tokenId: bigint;
txOptions: TransactionOptions;
value: bigint;
};

Represents the parameters for transferring ERC721 and ERC1155 tokens.

See

KeybanAccount#transferNft

Properties

PropertyTypeDescription
contractAddressAddressThe address of the NFT contract
standard"ERC721" | "ERC1155"The token standard (ERC721 or ERC1155)
toAddressThe recipient's address
tokenIdbigintThe ID of the token
txOptions?TransactionOptionsThe transaction options
value?bigintThe transfer amount (for ERC1155 tokens)