Skip to content

Commit

Permalink
Fixing misleading default configuration introduced by #317 (#403)
Browse files Browse the repository at this point in the history
  • Loading branch information
liarco authored Sep 23, 2022
1 parent fca7471 commit 7cc02dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions smart-contract/config/CollectionConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import * as Marketplaces from '../lib/Marketplaces';
import whitelistAddresses from './whitelist.json';

const CollectionConfig: CollectionConfigInterface = {
testnet: Networks.hardhatLocal,
testnet: Networks.ethereumTestnet,
mainnet: Networks.ethereumMainnet,
// The contract name can be updated using the following command:
// yarn rename-contract NEW_CONTRACT_NAME
Expand All @@ -26,7 +26,7 @@ const CollectionConfig: CollectionConfigInterface = {
price: 0.09,
maxMintAmountPerTx: 5,
},
contractAddress: '0x5FbDB2315678afecb367f032d93F642f64180aa3',
contractAddress: null,
marketplaceIdentifier: 'my-nft-token',
marketplaceConfig: Marketplaces.openSea,
whitelistAddresses,
Expand Down

0 comments on commit 7cc02dc

Please sign in to comment.