-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathhardhat.config.ts
More file actions
132 lines (125 loc) · 3.18 KB
/
hardhat.config.ts
File metadata and controls
132 lines (125 loc) · 3.18 KB
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
import '@nomicfoundation/hardhat-toolbox'
import '@nomicfoundation/hardhat-verify'
import 'hardhat-gas-reporter'
import 'solidity-coverage'
import dotenv from 'dotenv'
import type { HttpNetworkUserConfig } from 'hardhat/types'
import yargs from 'yargs'
import 'hardhat-contract-sizer'
const argv = yargs
.option('network', {
type: 'string',
default: 'hardhat',
})
.help(false)
.version(false).argv
// Load environment variables.
dotenv.config()
const { INFURA_KEY, MNEMONIC, ETHERSCAN_API_KEY, PK, ALCHEMY_KEY } = process.env
import './src/tasks/extract-mastercopy'
import './src/tasks/deploy-mastercopies'
import './src/tasks/deploy-mastercopy'
import './src/tasks/verify-mastercopies'
import './src/tasks/verify-mastercopy'
const DEFAULT_MNEMONIC =
'candy maple cake sugar pudding cream honey rich smooth crumble sweet treat'
const sharedNetworkConfig: HttpNetworkUserConfig = {}
if (PK) {
sharedNetworkConfig.accounts = [PK]
} else {
sharedNetworkConfig.accounts = {
mnemonic: MNEMONIC || DEFAULT_MNEMONIC,
}
}
if (['mainnet', 'sepolia'].includes(argv.network) && INFURA_KEY === undefined) {
throw new Error(
`Could not find Infura key in env, unable to connect to network ${argv.network}`,
)
}
export default {
paths: {
artifacts: 'build/artifacts',
cache: 'build/cache',
deploy: 'src/deploy',
sources: 'contracts',
},
solidity: {
compilers: [
{ version: '0.8.20' },
{ version: '0.8.4' },
{ version: '0.8.2' },
{ version: '0.8.1' },
{ version: '0.8.0' },
{ version: '0.6.12' },
],
},
networks: {
mainnet: {
...sharedNetworkConfig,
url: `https://mainnet.infura.io/v3/${INFURA_KEY}`,
},
sepolia: {
...sharedNetworkConfig,
url: `https://sepolia.infura.io/v3/${INFURA_KEY}`,
},
arbitrum: {
...sharedNetworkConfig,
url: `https://arb-mainnet.g.alchemy.com/v2/${ALCHEMY_KEY}`,
},
xdai: {
...sharedNetworkConfig,
url: 'https://xdai.poanetwork.dev',
},
matic: {
...sharedNetworkConfig,
url: 'https://polygon-rpc.com',
},
bsc: {
...sharedNetworkConfig,
url: 'https://bsc-dataseed.binance.org',
},
'truffle-dashboard': {
url: 'http://localhost:24012/rpc',
timeout: 100000000,
},
'lisk-sepolia': {
...sharedNetworkConfig,
chainId: 4202,
url: 'https://rpc.sepolia-api.lisk.com',
gasPrice: 1000000000,
},
'bob-sepolia': {
...sharedNetworkConfig,
chainId: 808813,
url: 'https://bob-sepolia.rpc.gobob.xyz/',
gasPrice: 1000000000,
},
},
namedAccounts: {
deployer: 0,
},
mocha: {
timeout: 2000000,
},
etherscan: {
apiKey: ETHERSCAN_API_KEY,
customChains: [
{
network: 'lisk-sepolia',
chainId: 4202,
urls: {
apiURL: 'https://sepolia-blockscout.lisk.com/api',
browserURL: 'https://sepolia-blockscout.lisk.com',
},
},
{
network: 'bob-sepolia',
chainId: 808813,
urls: {
apiURL: 'https://bob-sepolia.explorer.gobob.xyz/api',
browserURL: 'https://bob-sepolia.explorer.gobob.xyz',
},
},
],
},
}