TransferNFTParams type
This feature is currently in beta and may change based on feedback that we receive.
The params to pass to useTransferNFT
.
Signature:
export declare type TransferNFTParams<TContract> = TContract extends Erc1155
? {
to: WalletAddress;
tokenId: BigNumberish;
amount: Amount;
}
: {
to: WalletAddress;
tokenId: BigNumberish;
};
References: WalletAddress