File tree 3 files changed +5
-5
lines changed
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ const CONTRACT_NAME = 'CRYPTOPUNKS';
48
48
const CONTRACT_SYMBOL = 'CP' ;
49
49
const CONTRACT_TYPE = 'erc721' ;
50
50
const MINT_TO_ADDRESS = 'YOUR WALLET ADDRESS HERE' ;
51
- const CHAIN = 'rinkeby ' ;
51
+ const CHAIN = 'goerli ' ;
52
52
const METADATA_UPDATABLE = true ; // set to false if you don't want to allow metadata updates after minting
53
53
const ROYALTY_SHARE = 1000 ; // Percentage of the token price that goes to the royalty address. 100 bps = 1%
54
54
const ROYALTY_ADDRESS = "0xd8B808A887326F45B2D0cd999709Aa6264CeF919" ; // Address that will receive the royalty
Original file line number Diff line number Diff line change @@ -17,8 +17,8 @@ if (!START || !END) {
17
17
}
18
18
19
19
const COLLECTION_BASE_URL =
20
- CHAIN . toLowerCase ( ) === "rinkeby "
21
- ? `https://testnets.opensea.io/assets`
20
+ CHAIN . toLowerCase ( ) === "goerli "
21
+ ? `https://testnets.opensea.io/assets/goerli `
22
22
: "https://opensea.io/assets/matic" ;
23
23
24
24
async function main ( ) {
Original file line number Diff line number Diff line change @@ -176,8 +176,8 @@ async function reveal() {
176
176
if ( START ) {
177
177
reveal ( ) ;
178
178
} else {
179
- if ( CHAIN === 'rinkeby ' ) {
180
- console . log ( 'Rinkeby is not supported for checking ownership of NFTs.' ) ;
179
+ if ( CHAIN === 'goerli ' ) {
180
+ console . log ( 'Goerli is not supported for checking ownership of NFTs.' ) ;
181
181
process . exit ( 1 ) ;
182
182
}
183
183
setInterval ( checkOwnedNFTs , INTERVAL ) ;
You can’t perform that action at this time.
0 commit comments