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
Properties
Property | Type | Description |
---|---|---|
contractAddress | Address | The address of the NFT contract |
standard | "ERC721" | "ERC1155" | The token standard (ERC721 or ERC1155) |
to | Address | The recipient's address |
tokenId | bigint | The ID of the token |
txOptions? | TransactionOptions | The transaction options |
value? | bigint | The transfer amount (for ERC1155 tokens) |