- Move executor_addresses.json to a top level directory - Delete executors.json - Use the same file for both encoding and setting executors --- don't change below this line --- ENG-4260 Took 19 minutes Took 11 seconds
36 lines
813 B
JavaScript
36 lines
813 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,
|
|
optimizer: {
|
|
enabled: true,
|
|
runs: 1000,
|
|
},
|
|
},
|
|
},
|
|
|
|
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,
|
|
},
|
|
};
|