From 2f10d5372e31220142a16415709bb9eeb70ec869 Mon Sep 17 00:00:00 2001 From: Marco Lipparini Date: Wed, 8 Jun 2022 15:41:30 +0200 Subject: [PATCH] Fixing typo in hardhat actions --- .github/workflows/tests.yaml | 2 +- smart-contract/config/CollectionConfig.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 3ab7258ef..01f15f1d9 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -1,4 +1,4 @@ -name: Harhhat tests +name: Hardhat tests on: push: diff --git a/smart-contract/config/CollectionConfig.ts b/smart-contract/config/CollectionConfig.ts index 9ad369d87..ee685041d 100644 --- a/smart-contract/config/CollectionConfig.ts +++ b/smart-contract/config/CollectionConfig.ts @@ -4,7 +4,7 @@ import * as Marketplaces from '../lib/Marketplaces'; import whitelistAddresses from './whitelist.json'; const CollectionConfig: CollectionConfigInterface = { - testnet: Networks.ethereumTestnet, + testnet: Networks.hardhatLocal, mainnet: Networks.ethereumMainnet, // The contract name can be updated using the following command: // yarn rename-contract NEW_CONTRACT_NAME @@ -26,7 +26,7 @@ const CollectionConfig: CollectionConfigInterface = { price: 0.09, maxMintAmountPerTx: 5, }, - contractAddress: null, + contractAddress: '0x5FbDB2315678afecb367f032d93F642f64180aa3', marketplaceIdentifier: 'my-nft-token', marketplaceConfig: Marketplaces.openSea, whitelistAddresses,