From 194c420c562d4f641e2b80fba879b85ed9c94f97 Mon Sep 17 00:00:00 2001 From: William H Date: Thu, 7 Aug 2025 12:59:00 +0200 Subject: [PATCH 1/2] fix config --- hardhat.config.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hardhat.config.ts b/hardhat.config.ts index 898c573..7076455 100644 --- a/hardhat.config.ts +++ b/hardhat.config.ts @@ -22,15 +22,15 @@ const config: HardhatUserConfig = { }, etherscan: { apiKey: { - shapeSepolia: '123', // Hardhat needs a key, even if not used + shapeSepolia: 'abc123abc123abc123abc123abc123abc1', // 32 char dummy key, needed for hardhat verify }, customChains: [ { network: 'shapeSepolia', chainId: 11011, urls: { - apiURL: 'https://explorer-sepolia.shape.network/api', - browserURL: 'https://explorer-sepolia.shape.network', + apiURL: 'https://sepolia.shapescan.xyz/api', + browserURL: 'https://sepolia.shapescan.xyz', }, }, ], From d62643f7584b3adedddc525c7c3ca2a778030006 Mon Sep 17 00:00:00 2001 From: William H Date: Thu, 7 Aug 2025 12:59:29 +0200 Subject: [PATCH 2/2] new deployment --- src/addresses.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/addresses.ts b/src/addresses.ts index 303d77d..d5fa36e 100644 --- a/src/addresses.ts +++ b/src/addresses.ts @@ -11,7 +11,7 @@ export const addresses: Record> = { [shapeSepolia.id]: '0xaF94F7b7Dd601967E3ebdba052F5Ed6d215220b3', }, nftMinter: { - [shapeSepolia.id]: '0xCD0d5cB95FA21671a3184742e360a783edBcaD5C', + [shapeSepolia.id]: '0xf8C93f671e24A60f4c11612b2DFAC3DD83F41340', [shape.id]: zeroAddress, // Replace with actual address when deployed to mainnet }, };