Skip to content

Commit

Permalink
add sourcify
Browse files Browse the repository at this point in the history
  • Loading branch information
auryn-macmillan committed Jul 23, 2024
1 parent b58155d commit f2b7d9e
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ const config: HardhatUserConfig = {
url: process.env.GOERLI_URL || "",
accounts: process.env.PRIVATE_KEY !== undefined ? [process.env.PRIVATE_KEY] : [],
},
sepolia: {
url: process.env.SEPOLIA_URL || "",
accounts: process.env.PRIVATE_KEY !== undefined ? [process.env.PRIVATE_KEY] : [],
},
},
namedAccounts: {
deployer: 0,
Expand All @@ -43,6 +47,9 @@ const config: HardhatUserConfig = {
etherscan: {
apiKey: process.env.ETHERSCAN_API_KEY,
},
sourcify: {
enabled: true,
},
}

export default config

0 comments on commit f2b7d9e

Please sign in to comment.