@@ -11,7 +11,6 @@ const namePrefix = "YOUR COLLECTION NAME";
1111const description = "Remember to replace this description" ;
1212const baseUri = "ipfs://NewUriToReplace" ; // This will be replaced automatically
1313
14- // If you have selected Solana then the collection starts from 0 automatically
1514const layerConfigurations = [
1615 {
1716 growEditionSizeTo : 5 ,
@@ -46,7 +45,7 @@ const extraMetadata = {
4645// ** REQUIRED **
4746const AUTH = process . env . NFTPORT_API_KEY ; // Set this in the .env file to prevent exposing your API key when pushing to Github
4847const LIMIT = 2 ; // Your API key rate limit
49- const CHAIN = 'rinkeby' ; // only rinkeby or polygon
48+ const CHAIN = 'rinkeby' ; // only rinkeby, polygon, or ethereum
5049
5150// REQUIRED CONTRACT DETAILS THAT CANNOT BE UPDATED LATER!
5251const CONTRACT_NAME = 'CRYPTOPUNKS' ;
@@ -55,7 +54,7 @@ const METADATA_UPDATABLE = true; // set to false if you don't want to allow meta
5554const OWNER_ADDRESS = 'YOUR WALLET ADDRESS HERE' ;
5655const TREASURY_ADDRESS = 'YOUR WALLET ADDRESS HERE' ;
5756const MAX_SUPPLY = 5000 ; // The maximum number of NFTs that can be minted. CANNOT BE UPDATED!
58- const MINT_PRICE = 1 ; // Minting price per NFT. Rinkeby = ETH, Polygon = MATIC. CANNOT BE UPDATED!
57+ const MINT_PRICE = 0.01 ; // Minting price per NFT. Rinkeby = ETH, Ethereum = ETH, Polygon = MATIC. CANNOT BE UPDATED!
5958const TOKENS_PER_MINT = 10 ; // maximum number of NFTs a user can mint in a single transaction. CANNOT BE UPDATED!
6059
6160// REQUIRED CONTRACT DETAILS THAT CAN BE UPDATED LATER.
0 commit comments