Erc721BatchMintable class
Mint Many ERC721 NFTs at once
Example
const contract = await sdk.getContract("{{contract_address}}");
await contract.nft.mint.batch.to(walletAddress, [nftMetadata1, nftMetadata2, ...]);
Constructors
Constructor | Modifiers | Description |
---|---|---|
(constructor)(erc721, contractWrapper, storage) | Constructs a new instance of the Erc721BatchMintable class |
Properties
Property | Modifiers | Type | Description |
---|---|---|---|
featureName | "ERC721BatchMintable" |
Methods
Method | Modifiers | Description |
---|---|---|
to(to, metadatas) | Mint Many unique NFTs |
Signature:
export declare class Erc721BatchMintable implements DetectableFeature
Implements: DetectableFeature
Remarks
NFT batch minting functionality that handles IPFS storage for you.