Skip to content

Commit

Permalink
chg: add hardhat-verify plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
maxweng committed Feb 29, 2024
1 parent d9aad70 commit 64c1166
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
10 changes: 10 additions & 0 deletions hardhat.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ require("hardhat-gas-reporter");
require("hardhat-contract-sizer");
require("hardhat-deploy");
require("solidity-coverage");
require("@nomicfoundation/hardhat-verify");

require("dotenv").config();

// tasks
Expand Down Expand Up @@ -108,5 +110,13 @@ module.exports = {
},
mocha: {
timeout: 0
},
sourcify: {
enabled: true
},
etherscan: {
apiKey: {
sepolia: process.env.ETHERSCAN_API_KEY
}
}
};
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@
},
"devDependencies": {
"@gnosis.pm/mock-contract": "^3.0.8",
"@nomicfoundation/hardhat-verify": "^2.0.4",
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers@^0.3.0-beta.10",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/hardhat-upgrades": "^1.8.0",
Expand Down

0 comments on commit 64c1166

Please sign in to comment.