-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhardhat.config.js
47 lines (46 loc) · 1004 Bytes
/
hardhat.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
require("@nomicfoundation/hardhat-toolbox");
/** @type import('hardhat/config').HardhatUserConfig */
module.exports = {
solidity: {
compilers: [
{
version: "0.8.20"
},
{
version: "0.7.6"
},
]
},
networks: {
local: {
url: "http://127.0.0.1:8545"
},
eth_sepolia: {
url: "https://ethereum-sepolia-rpc.publicnode.com ",
accounts: [ vars.get("SMART_CONTRACT_DEPLOYER") ],
},
arbitrum: {
url: "https://arb1.arbitrum.io/rpc",
accounts: [ vars.get("SMART_CONTRACT_DEPLOYER") ],
},
hardhat: {
forking: {
url: vars.get("ARBITRUM_ARCHIVE_NODE_RPC_ADDRESS"),
blockNumber:238088027,
},
chains: {
42161: {
hardforkHistory: {
byzantium: 0,
constantinople: 0,
petersburg: 0,
istanbul: 0,
muirGlacier: 0,
berlin: 0,
london: 0,
}
}
},
}
}
};