NFT Batch Transfer Module
The NFT Batch Transfer module allows you to send multiple NFTs to the Unlockd user wallet in a single transaction.
Last updated
The NFT Batch Transfer module allows you to send multiple NFTs to the Unlockd user wallet in a single transaction.
Last updated
export type Nft = {
collection: string
tokenId: string
}export type ClientOptions = {
network?: Chain
}
export type Chain = 'mainnet' | 'sepolia' | 'localhost'export const sendNftsToWallet = async (
nfts: {
contractAddress: string,
tokenId: string
}[],
options?: ClientOptions
): Promise<void>const result = await sendNftsToWallet(nfts[], signature, options?);