feat: Add deployment and fund wallet scripts
--- don't change below this line --- ENG-4101 Took 1 hour 2 minutes Took 2 minutes Took 8 minutes Took 4 minutes Took 28 minutes
This commit is contained in:
27
foundry/hardhat.config.js
Normal file
27
foundry/hardhat.config.js
Normal file
@@ -0,0 +1,27 @@
|
||||
/** @type import('hardhat/config').HardhatUserConfig */
|
||||
require("@nomiclabs/hardhat-ethers");
|
||||
require("@nomicfoundation/hardhat-foundry");
|
||||
// require("@tenderly/hardhat-tenderly");
|
||||
|
||||
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,
|
||||
},
|
||||
};
|
||||
Reference in New Issue
Block a user