feat: Verify contracts on etherscan

--- don't change below this line ---
ENG-4260 Took 31 minutes
This commit is contained in:
Diana Carvalho
2025-02-27 15:52:32 +00:00
parent 87e7394b0a
commit 79045e2689
6 changed files with 46 additions and 7 deletions

View File

@@ -1,5 +1,6 @@
/** @type import('hardhat/config').HardhatUserConfig */
require("@tenderly/hardhat-tenderly");
require("@nomicfoundation/hardhat-verify");
require("@nomiclabs/hardhat-ethers");
require("@nomicfoundation/hardhat-foundry");
@@ -40,6 +41,10 @@ module.exports = {
tenderly: {
project: "project",
username: "tvinagre",
privateVerification: true,
privateVerification: false,
},
etherscan: {
apiKey: process.env.ETHERSCAN_API_KEY,
}
};