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.

Type declaration

NameType
contractAddressAddress
standard"ERC721" | "ERC1155"
toAddress
tokenIdbigint
txOptions?TransactionOptions
value?bigint

See

KeybanAccount#transferNft