Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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',
},
},
],
Expand Down
2 changes: 1 addition & 1 deletion src/addresses.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export const addresses: Record<string, Record<number, Address>> = {
[shapeSepolia.id]: '0xaF94F7b7Dd601967E3ebdba052F5Ed6d215220b3',
},
nftMinter: {
[shapeSepolia.id]: '0xCD0d5cB95FA21671a3184742e360a783edBcaD5C',
[shapeSepolia.id]: '0xf8C93f671e24A60f4c11612b2DFAC3DD83F41340',
[shape.id]: zeroAddress, // Replace with actual address when deployed to mainnet
},
};