Skip to main content

ERC721 Drop

The ERC721Drop smart contract uses the ERC721SignatureMint base contract along with the LazyMint, DelayedReveal and DropSinglePhase contract extension.

The drop mechanism in the DropSinglePhase extension is a distribution mechanism for lazy minted tokens. It lets you set restrictions such as a price to charge, an allowlist etc. when an address attempts to mint lazy minted tokens.

The ERC721Drop contract lets you lazy mint tokens, and distribute those lazy minted tokens via signature minting, or via the drop mechanism.

Import

import "@thirdweb-dev/contracts/base/ERC721Drop.sol";

Availability functionality

FunctionalityDescription
ERC721SignatureMintSee the portal page for ERC721SignatureMint, here.
LazyMintPrepare the metadata for NFTs that will be minted by an external party, without paying the gas cost for actually minting the NFTs.
DelayedRevealDistribute NFTs to your audience and reveal the metadata of the distributed NFTs, after the fact.
DropSinglePhaseSet restrictions such as a price to charge, an allowlist etc. when an address attempts to mint lazy minted tokens.

Implementing the Contract

Import the contract extension and make your contract inherit it.

// SPDX-License-Identifier: Apache-2.0
pragma solidity ^0.8.0;

import "@thirdweb-dev/contracts/base/ERC721Drop.sol";

contract MyNFT is ERC721Drop {
constructor(
string memory _name,
string memory _symbol,
address _royaltyRecipient,
uint128 _royaltyBps,
address _primarySaleRecipient
)
ERC721Drop(
_name,
_symbol,
_royaltyRecipient,
_royaltyBps,
_primarySaleRecipient
)
{}
}

Unlocked Features

Once deployed, you'll be able to access the following contract extensions' features on the SDK and dashboard: