airdropERC721WithSignature

Prepares a transaction to call the "airdropERC721WithSignature" function on the contract.

Example

import { sendTransaction } from "thirdweb";
import { airdropERC721WithSignature } from "thirdweb/extensions/airdrop";
const transaction = airdropERC721WithSignature({
contract,
req: ...,
signature: ...,
overrides: {
...
}
});
// Send the transaction
await sendTransaction({ transaction, account });
function airdropERC721WithSignature(
| AirdropERC721WithSignatureParams
| { asyncParams: () => Promise<AirdropERC721WithSignatureParams> }
>,

Parameters

The options for the "airdropERC721WithSignature" function.

Type

| AirdropERC721WithSignatureParams
| { asyncParams: () => Promise<AirdropERC721WithSignatureParams> }
>;

Returns

let returnType: PreparedTransaction<
any,
AbiFunction,
>;

A prepared transaction object.