EeseeMinter

EeseeMinter

EeseeNFTLazyMintImplementation

address EeseeNFTLazyMintImplementation

Contract implementations for Clonable

EeseeNFTDropImplementation

address EeseeNFTDropImplementation

random

contract IEeseeRandom random

Contract that provides random.

lazyMintCollections

mapping(address => mapping(address => mapping(uint256 => contract IEeseeNFTLazyMint))) lazyMintCollections

Maps msg.senders to collection owners to collection IDs to NFT collections. Note: We use owners in a mapping to avoid NFT censorship. If we did not include owners, malicious users would be able to frontrun collectionIDs to block other users' colelctions from being created. msg.senders are also included in a mapping as a method of access control.

lazyMint

function lazyMint(uint256 collectionID, address owner, struct LazyMintCollectionMetadata collectionMetadata, struct LazyMintTokenMetadata tokenMetadata, address recipient) external returns (contract IERC721 collection, uint256 tokenID)

Deploys NFT collection contract if there isn't one and mints token to it. Emits {DeployLazyMint} event if new collection was deployed and emits {LazyMint} event.

Parameters

Return Values

deployDropCollection

function deployDropCollection(struct DropMetadata metadata, uint32 mintLimit, uint32 mintStartTimestamp, struct IEeseeNFTDrop.StageOptions[] stages) external returns (contract IERC721 collection)

Deploys a new drop collection contract. Emits {DeployDrop} event.

Parameters

Return Values

Inherited from IEeseeMinter

random

function random() external view returns (contract IEeseeRandom)

lazyMintCollections

function lazyMintCollections(address, address, uint256) external view returns (contract IEeseeNFTLazyMint)

DeployLazyMint

event DeployLazyMint(contract IERC721 collection, address sender, address owner, uint256 collectionID)

LazyMint

event LazyMint(contract IERC721 collection, uint256 tokenID, address recipient)

DeployDrop

event DeployDrop(contract IERC721 collection, address sender)

Last updated