Files
tycho-execution/foundry/hardhat.config.js
Diana Carvalho 34563c3eb7 feat: Deploy on mainnet
Also update executors.json with uniswap v2 address on mainnet

--- don't change below this line ---
ENG-4101 Took 22 minutes


Took 7 seconds
2025-02-26 09:49:00 +00:00

32 lines
714 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.RPC_URL,
accounts: [process.env.PRIVATE_KEY]
},
mainnet: {
url: process.env.RPC_URL,
accounts: [process.env.PRIVATE_KEY]
}
},
tenderly: {
project: "project",
username: "tvinagre",
privateVerification: true,
},
};