@@ -11,7 +11,6 @@ const namePrefix = "YOUR COLLECTION NAME";
11
11
const description = "Remember to replace this description" ;
12
12
const baseUri = "ipfs://NewUriToReplace" ; // This will be replaced automatically
13
13
14
- // If you have selected Solana then the collection starts from 0 automatically
15
14
const layerConfigurations = [
16
15
{
17
16
growEditionSizeTo : 5 ,
@@ -46,7 +45,7 @@ const extraMetadata = {
46
45
// ** REQUIRED **
47
46
const AUTH = process . env . NFTPORT_API_KEY ; // Set this in the .env file to prevent exposing your API key when pushing to Github
48
47
const LIMIT = 2 ; // Your API key rate limit
49
- const CHAIN = 'rinkeby' ; // only rinkeby or polygon
48
+ const CHAIN = 'rinkeby' ; // only rinkeby, polygon, or ethereum
50
49
51
50
// REQUIRED CONTRACT DETAILS THAT CANNOT BE UPDATED LATER!
52
51
const CONTRACT_NAME = 'CRYPTOPUNKS' ;
@@ -55,7 +54,7 @@ const METADATA_UPDATABLE = true; // set to false if you don't want to allow meta
55
54
const OWNER_ADDRESS = 'YOUR WALLET ADDRESS HERE' ;
56
55
const TREASURY_ADDRESS = 'YOUR WALLET ADDRESS HERE' ;
57
56
const 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!
59
58
const TOKENS_PER_MINT = 10 ; // maximum number of NFTs a user can mint in a single transaction. CANNOT BE UPDATED!
60
59
61
60
// REQUIRED CONTRACT DETAILS THAT CAN BE UPDATED LATER.
0 commit comments