From 2d47853c65b25d35ecf44f8aeecd3747aaec6352 Mon Sep 17 00:00:00 2001 From: tacolopo <106569305+tacolopo@users.noreply.github.com> Date: Tue, 12 Jul 2022 17:00:00 -0400 Subject: [PATCH 1/4] Update 9.-launching-on-mainnet.md --- guides/readme/9.-launching-on-mainnet.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/guides/readme/9.-launching-on-mainnet.md b/guides/readme/9.-launching-on-mainnet.md index f31eac9..6a102c8 100644 --- a/guides/readme/9.-launching-on-mainnet.md +++ b/guides/readme/9.-launching-on-mainnet.md @@ -7,11 +7,13 @@ coverY: 0 You have thoroughly tested your contracts on testnet. The images and metadata reside on IPFS. You only need to change some values in `config.js` before launching on mainnet. -* Change the RPC endpoint to the mainnet endpoint `rpcEndpoint: 'https://rpc.stargaze-apis.com/'`. -* Change `startTime` of the launch. i.e: 3pm EST on Friday, March 25, 2022, and format it to UTC: `startTime: '2022-03-25T19:00:00.000Z'`. -* Change account to your mainnet account. +* Change ACCOUNT INFO [i.e. "mnemonic" and public address "address"] to your mainnet account. +* Comment out testnet rpcEndpoint: //rpcEndpoint: 'https://rpc.elgafar-1.stargaze-apis.com/' +* Uncomment mainnet rpcEndpoint: rpcEndpoint: 'https://rpc.stargaze-apis.com/' +* Ensure "royaltyPaymentAddress" is updated to reflect a mainnet public address +* Change `startTime` of the launch. i.e: 3pm EST on Friday, March 25, 2022, and format it to UTC (https://www.timeanddate.com/worldclock/timezone/zulu): `startTime: '2022-03-25T19:00:00.000Z'`. * Comment out (add `//` before all the contract codes)`CONTRACT CODE IDs: Castor Testnet` -* uncomment (remove `//` before the contract codes sg721CodeId, minterCodeId, whitelistCodeId) `CONTRACT CODE IDs: Mainnet` +* Uncomment (remove `//` before the contract codes sg721CodeId, minterCodeId, whitelistCodeId) `CONTRACT CODE IDs: Mainnet` Now you're ready to deploy. From 9bf324be4ab1e1b4cb01c9c2a39d9e97c2888b2a Mon Sep 17 00:00:00 2001 From: tacolopo <106569305+tacolopo@users.noreply.github.com> Date: Tue, 12 Jul 2022 17:05:06 -0400 Subject: [PATCH 2/4] Update 9.-launching-on-mainnet.md --- guides/readme/9.-launching-on-mainnet.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/guides/readme/9.-launching-on-mainnet.md b/guides/readme/9.-launching-on-mainnet.md index 6a102c8..f475003 100644 --- a/guides/readme/9.-launching-on-mainnet.md +++ b/guides/readme/9.-launching-on-mainnet.md @@ -8,9 +8,9 @@ coverY: 0 You have thoroughly tested your contracts on testnet. The images and metadata reside on IPFS. You only need to change some values in `config.js` before launching on mainnet. * Change ACCOUNT INFO [i.e. "mnemonic" and public address "address"] to your mainnet account. -* Comment out testnet rpcEndpoint: //rpcEndpoint: 'https://rpc.elgafar-1.stargaze-apis.com/' -* Uncomment mainnet rpcEndpoint: rpcEndpoint: 'https://rpc.stargaze-apis.com/' -* Ensure "royaltyPaymentAddress" is updated to reflect a mainnet public address +* Comment out testnet `rpcEndpoint`: //rpcEndpoint: 'https://rpc.elgafar-1.stargaze-apis.com/' +* Uncomment mainnet `rpcEndpoint`: `rpcEndpoint: 'https://rpc.stargaze-apis.com/'` +* Ensure `royaltyPaymentAddress` is updated to reflect a mainnet public address * Change `startTime` of the launch. i.e: 3pm EST on Friday, March 25, 2022, and format it to UTC (https://www.timeanddate.com/worldclock/timezone/zulu): `startTime: '2022-03-25T19:00:00.000Z'`. * Comment out (add `//` before all the contract codes)`CONTRACT CODE IDs: Castor Testnet` * Uncomment (remove `//` before the contract codes sg721CodeId, minterCodeId, whitelistCodeId) `CONTRACT CODE IDs: Mainnet` From 8d78014b8697b9831a6e87f4f9cf4c26a66a58d1 Mon Sep 17 00:00:00 2001 From: tacolopo <106569305+tacolopo@users.noreply.github.com> Date: Tue, 12 Jul 2022 17:06:00 -0400 Subject: [PATCH 3/4] Update 9.-launching-on-mainnet.md --- guides/readme/9.-launching-on-mainnet.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guides/readme/9.-launching-on-mainnet.md b/guides/readme/9.-launching-on-mainnet.md index f475003..0017f1c 100644 --- a/guides/readme/9.-launching-on-mainnet.md +++ b/guides/readme/9.-launching-on-mainnet.md @@ -7,8 +7,8 @@ coverY: 0 You have thoroughly tested your contracts on testnet. The images and metadata reside on IPFS. You only need to change some values in `config.js` before launching on mainnet. -* Change ACCOUNT INFO [i.e. "mnemonic" and public address "address"] to your mainnet account. -* Comment out testnet `rpcEndpoint`: //rpcEndpoint: 'https://rpc.elgafar-1.stargaze-apis.com/' +* Change ACCOUNT INFO [i.e. `mnemonic` and public address `address`] to your mainnet account. +* Comment out testnet `rpcEndpoint`: `//rpcEndpoint: 'https://rpc.elgafar-1.stargaze-apis.com/'` * Uncomment mainnet `rpcEndpoint`: `rpcEndpoint: 'https://rpc.stargaze-apis.com/'` * Ensure `royaltyPaymentAddress` is updated to reflect a mainnet public address * Change `startTime` of the launch. i.e: 3pm EST on Friday, March 25, 2022, and format it to UTC (https://www.timeanddate.com/worldclock/timezone/zulu): `startTime: '2022-03-25T19:00:00.000Z'`. From 84309d63b54f8144e6ece55cccb05aec7204e369 Mon Sep 17 00:00:00 2001 From: tacolopo <106569305+tacolopo@users.noreply.github.com> Date: Tue, 12 Jul 2022 17:13:40 -0400 Subject: [PATCH 4/4] Update 9.-launching-on-mainnet.md --- guides/readme/9.-launching-on-mainnet.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/guides/readme/9.-launching-on-mainnet.md b/guides/readme/9.-launching-on-mainnet.md index 0017f1c..cd10d8d 100644 --- a/guides/readme/9.-launching-on-mainnet.md +++ b/guides/readme/9.-launching-on-mainnet.md @@ -15,7 +15,13 @@ You have thoroughly tested your contracts on testnet. The images and metadata re * Comment out (add `//` before all the contract codes)`CONTRACT CODE IDs: Castor Testnet` * Uncomment (remove `//` before the contract codes sg721CodeId, minterCodeId, whitelistCodeId) `CONTRACT CODE IDs: Mainnet` -Now you're ready to deploy. +Now you're ready to deploy. + +To instantiate the contract on mainnet: +```bash +yarn minter +``` +To verify your NFT collection successfully launched, take your new `minter` address and enter it at https://app.stargaze.zone/launchpad/. For example, https://app.stargaze.zone/launchpad/stars1vhu3a6pkftf2g58622zujmq3sdptz6rmd3sgcdh4upmfhfzrcdzs5mgujh. {% hint style="info" %} Whitelist `start_time` and `end_time` should come before Public Mint `start_time`. Airdrops can be done irrespective of any `start_time`.\