-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhardhat.config.js
81 lines (78 loc) · 1.83 KB
/
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
const ChainId = {
mainnet : 1,
polygon : 137,
amoy : 80002,
sepolia : 11155111,
arbitrum : 42161,
arbitrumGoerli : 421613,
base: 8453,
baseSepolia: 84532,
}
const config = {
solidity: '0.8.9',
paths: {
cache: '/tmp/cache',
},
networks: {
hardhat: {
chainId: ChainId.baseSepolia,
initialBaseFeePerGas: 0,
forking: {
url: "https://base-sepolia.g.alchemy.com/v2/oDj71HCrnWLR4oGNfdTEzDft4IUXJeX_"
},
chains: {
[ChainId.polygon]: {
hardforkHistory: {
cancun: 1,
london: 1
},
}
},
chains: {
[ChainId.base]: {
hardforkHistory: {
cancun: 1,
london: 1
},
},
[ChainId.baseSepolia]: {
hardforkHistory: {
cancun: 1,
london: 1
},
},
// // chains are configured to fork from blocks around the time of
// // March 15th 2023. it seems like a safe timespan for our use case.
// // CAUTION:
// // we shouldn't fork from too old blocks, because of getting errors of
// // too many requests per second
// [ChainId.polygon]: {
// hardforkHistory: {
// cancun: 0,
// },
// },
// [ChainId.mumbai]: {
// hardforkHistory: {
// cancun: 33_130_000,
// },
// },
// [ChainId.sepolia]: {
// hardforkHistory: {
// cancun: 3_100_000,
// },
// },
// [ChainId.arbitrum]: {
// hardforkHistory: {
// cancun: 70_000_000,
// },
// },
// [ChainId.arbitrumGoerli]: {
// hardforkHistory: {
// cancun: 11_500_000,
// },
// },
},
},
},
}
module.exports = config