This repository has been archived by the owner on Mar 11, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathhardhat.config.ts
102 lines (97 loc) · 2.17 KB
/
hardhat.config.ts
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
import { HardhatUserConfig } from 'hardhat/types'
import 'solidity-coverage'
import * as dotenv from 'dotenv'
// Hardhat plugins
import 'hardhat-deploy'
import '@nomiclabs/hardhat-ethers'
import '@nomiclabs/hardhat-waffle'
import '@nomiclabs/hardhat-etherscan'
import './tasks/deploy'
// Load environment variables from .env
dotenv.config()
// Fix lint
if (!process.env.L1_NODE_WEB3_URL) {
process.env.L1_NODE_WEB3_URL = 'http://localhost:9545'
}
const config: HardhatUserConfig = {
mocha: {
timeout: 300000,
},
networks: {
boba: {
url: 'http://localhost:8545',
saveDeployments: false,
},
localhost: {
url: 'http://localhost:9545',
allowUnlimitedContractSize: true,
timeout: 1800000,
accounts: [
'0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80',
],
},
mainnet: {
url: process.env.L1_NODE_WEB3_URL,
},
},
solidity: {
compilers: [
{
version: '0.8.9',
settings: {
optimizer: { enabled: true, runs: 10_000 },
metadata: {
bytecodeHash: 'none',
},
outputSelection: {
'*': {
'*': ['storageLayout'],
},
},
},
},
{
version: '0.6.6', // Required for oracle
settings: {
optimizer: { enabled: true, runs: 10_000 },
outputSelection: {
'*': {
'*': ['storageLayout'],
},
},
},
},
{
version: '0.5.17', // Required for WETH9
settings: {
optimizer: { enabled: true, runs: 10_000 },
outputSelection: {
'*': {
'*': ['storageLayout'],
},
},
},
},
{
version: '0.4.11', // Required for OMGLIkeToken
settings: {
optimizer: { enabled: true, runs: 10_000 },
outputSelection: {
'*': {
'*': ['storageLayout'],
},
},
},
},
],
},
namedAccounts: {
deployer: {
default: 0,
},
},
etherscan: {
apiKey: process.env.ETHERSCAN_KEY,
},
}
export default config