@@ -47,13 +47,21 @@ const AUTH = "cd604374-c889-404a-b6e7-cdb0dcb1e892";
47
47
const LIMIT = 2 ; // Your API key rate limit
48
48
const CONTRACT_NAME = 'testSTACKr Collection' ;
49
49
const 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 ;
53
59
const CHAIN = 'rinkeby' ;
54
60
const METADATA_UPDATABLE = true ; // set to false if you don't want to allow metadata updates after minting
55
61
const ROYALTY_SHARE = 1000 ; // Percentage of the token price that goes to the royalty address. 100 bps = 1%
56
62
const ROYALTY_ADDRESS = "0xd8B808A887326F45B2D0cd999709Aa6264CeF919" ; // Address that will receive the royalty
63
+ const BASE_URI = null ;
64
+ const PREREVEAL_TOKEN_URI = null ;
57
65
// ** OPTIONAL **
58
66
let CONTRACT_ADDRESS = "YOUR CONTRACT ADDRESS" ; // If you want to manually include it
59
67
// Generic Metadata is optional if you want to reveal your NFTs
@@ -165,7 +173,8 @@ module.exports = {
165
173
AUTH ,
166
174
LIMIT ,
167
175
CONTRACT_ADDRESS ,
168
- MINT_TO_ADDRESS ,
176
+ OWNER_ADDRESS ,
177
+ TREASURY_ADDRESS ,
169
178
CHAIN ,
170
179
GENERIC ,
171
180
GENERIC_TITLE ,
@@ -179,4 +188,11 @@ module.exports = {
179
188
METADATA_UPDATABLE ,
180
189
ROYALTY_SHARE ,
181
190
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
182
198
} ;
0 commit comments