Private
contractPrivate
erc721Claim NFTs to a specific Wallet
Rest
...args: [destinationAddress: string, quantity: BigNumberish, options?: ClaimOptions]Let the specified wallet claim NFTs.
const address = "{{wallet_address}}"; // address of the wallet you want to claim the NFTs
const quantity = 1; // how many NFTs you want to claim
const tx = await contract.erc721.claimTo(address, quantity);
const receipt = tx[0].receipt; // the transaction receipt
Rest
...args: [destinationAddress: string, quantity: BigNumberish, options?: ClaimOptions]Construct a claim transaction without executing it. This is useful for estimating the gas cost of a claim transaction, overriding transaction options and having fine grained control over the transaction execution.
Address you want to send the token to
Quantity of the tokens you want to claim
Optional
options: ClaimOptionsOptions for claiming the NFTs
Use contract.erc721.claim.prepare(...args)
instead
Generated using TypeDoc
Configure and claim ERC721 NFTs
Remarks
Manage claim phases and claim ERC721 NFTs that have been lazily minted.
Example