Skip to main content

Transfer/Send NFT

This is a guide used to transfer an existing NFT.

Transfer Data:

const transferData = {
from: "0x...",
to: "0x...",
nftId: "1",
};
Get Contract Signer

Make sure you've contractSigner object before proceeding.

Transfer​

Please make sure your contractSigner from previous step is derived from the right contract and call the transfer function below accordingly.

drip.transfer(transferData, contractSigner);