@@ -47,13 +47,21 @@ const AUTH = "cd604374-c889-404a-b6e7-cdb0dcb1e892";
4747const LIMIT = 2 ; // Your API key rate limit
4848const CONTRACT_NAME = 'testSTACKr Collection' ;
4949const CONTRACT_SYMBOL = 'TSC' ;
50- const CONTRACT_TYPE = 'erc721' ;
51- const MINT_TO_ADDRESS = '0xd8B808A887326F45B2D0cd999709Aa6264CeF919' ;
52- // const MINT_TO_ADDRESS = 'YOUR WALLET ADDRESS HERE';
50+ const OWNER_ADDRESS = '0xd8B808A887326F45B2D0cd999709Aa6264CeF919' ;
51+ // const OWNER_ADDRESS = 'YOUR WALLET ADDRESS HERE';
52+ const TREASURY_ADDRESS = '0xd8B808A887326F45B2D0cd999709Aa6264CeF919' ;
53+ // const TREASURY_ADDRESS = 'TREASURY WALLET ADDRESS HERE';
54+ const MAX_SUPPLY = 5000 ; // The maximum number of NFTs that can be minted. CANNOT BE UPDATED!
55+ const MINT_PRICE = 10 ; // Minting price per NFT in MATIC. CANNOT BE UPDATED!
56+ const TOKENS_PER_MINT = 10 ; // maximum number of NFTs a user can mint in a single transaction. CANNOT BE UPDATED!
57+ const PUBLIC_MINT_START_DATE = null ;
58+ const PRESALE_MINT_START_DATE = null ;
5359const CHAIN = 'rinkeby' ;
5460const METADATA_UPDATABLE = true ; // set to false if you don't want to allow metadata updates after minting
5561const ROYALTY_SHARE = 1000 ; // Percentage of the token price that goes to the royalty address. 100 bps = 1%
5662const ROYALTY_ADDRESS = "0xd8B808A887326F45B2D0cd999709Aa6264CeF919" ; // Address that will receive the royalty
63+ const BASE_URI = null ;
64+ const PREREVEAL_TOKEN_URI = null ;
5765// ** OPTIONAL **
5866let CONTRACT_ADDRESS = "YOUR CONTRACT ADDRESS" ; // If you want to manually include it
5967// Generic Metadata is optional if you want to reveal your NFTs
@@ -165,7 +173,8 @@ module.exports = {
165173 AUTH ,
166174 LIMIT ,
167175 CONTRACT_ADDRESS ,
168- MINT_TO_ADDRESS ,
176+ OWNER_ADDRESS ,
177+ TREASURY_ADDRESS ,
169178 CHAIN ,
170179 GENERIC ,
171180 GENERIC_TITLE ,
@@ -179,4 +188,11 @@ module.exports = {
179188 METADATA_UPDATABLE ,
180189 ROYALTY_SHARE ,
181190 ROYALTY_ADDRESS ,
191+ MAX_SUPPLY ,
192+ MINT_PRICE ,
193+ TOKENS_PER_MINT ,
194+ PRESALE_MINT_START_DATE ,
195+ PUBLIC_MINT_START_DATE ,
196+ BASE_URI ,
197+ PREREVEAL_TOKEN_URI
182198} ;
0 commit comments