Files
tycho-execution/foundry/hardhat.config.js
Diana Carvalho 77ba9498a7 feat: Verify router contract on tenderly
Fix package.json

--- don't change below this line ---
ENG-4101 Took 34 minutes
2025-02-26 09:49:00 +00:00

28 lines
607 B
JavaScript

/** @type import('hardhat/config').HardhatUserConfig */
require("@tenderly/hardhat-tenderly");
require("@nomiclabs/hardhat-ethers");
require("@nomicfoundation/hardhat-foundry");
module.exports = {
solidity: {
version: "0.8.26",
settings: {
evmVersion: "cancun",
viaIR: true,
},
},
networks: {
tenderly: {
url: process.env.TENDERLY_RPC_URL,
accounts: [process.env.PRIVATE_KEY]
}
},
tenderly: {
project: "project",
username: "tvinagre",
privateVerification: true,
},
};