-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathhardhat.config.js
191 lines (183 loc) · 6.08 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
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
require("@nomiclabs/hardhat-waffle")
require("@nomiclabs/hardhat-etherscan")
require("hardhat-deploy")
require("solidity-coverage")
require("hardhat-gas-reporter")
require("hardhat-contract-sizer")
require("dotenv").config()
/**
* @type import('hardhat/config').HardhatUserConfig
*/
const MAINNET_RPC_URL =
process.env.MAINNET_RPC_URL ||
process.env.ALCHEMY_MAINNET_RPC_URL ||
"https://eth-mainnet.alchemyapi.io/v2/your-api-key"
const RINKEBY_RPC_URL =
process.env.RINKEBY_RPC_URL || "https://eth-rinkeby.alchemyapi.io/v2/your-api-key"
const KOVAN_RPC_URL = process.env.KOVAN_RPC_URL || "https://eth-kovan.alchemyapi.io/v2/your-api-key"
const POLYGON_MAINNET_RPC_URL =
process.env.POLYGON_MAINNET_RPC_URL || "https://polygon-mainnet.alchemyapi.io/v2/your-api-key"
const GOERLI_RPC_URL =
process.env.GOERLI_RPC_URL || "https://eth-goerli.alchemyapi.io/v2/your-api-key"
const OWNER_PRIVATE_KEY = process.env.OWNER_PRIVATE_KEY || "0x"
const HOSPITAL_PRIVATE_KEY = process.env.HOSPITAL_PRIVATE_KEY || "0x"
const DOCTOR_PRIVATE_KEY = process.env.DOCTOR_PRIVATE_KEY || "0x"
const PATIENT_PRIVATE_KEY = process.env.PATIENT_PRIVATE_KEY || "0x"
// optional
const MNEMONIC = process.env.MNEMONIC || "your mnemonic"
// Your API key for Etherscan, obtain one at https://etherscan.io/
const ETHERSCAN_API_KEY = process.env.ETHERSCAN_API_KEY || "Your etherscan API key"
const POLYGONSCAN_API_KEY = process.env.POLYGONSCAN_API_KEY || "Your polygonscan API key"
const REPORT_GAS = process.env.REPORT_GAS || false
module.exports = {
defaultNetwork: "hardhat",
networks: {
hardhat: {
// // If you want to do some forking, uncomment this
// forking: {
// url: MAINNET_RPC_URL
// }
chainId: 31337,
allowUnlimitedContractSize: true,
},
localhost: {
chainId: 31337,
allowUnlimitedContractSize: true,
},
kovan: {
url: KOVAN_RPC_URL,
accounts:
OWNER_PRIVATE_KEY !== undefined
? [
OWNER_PRIVATE_KEY,
HOSPITAL_PRIVATE_KEY,
DOCTOR_PRIVATE_KEY,
PATIENT_PRIVATE_KEY,
]
: [],
//accounts: {
// mnemonic: MNEMONIC,
// },
saveDeployments: true,
chainId: 42,
blockConfirmations: 6,
},
rinkeby: {
url: RINKEBY_RPC_URL,
accounts:
OWNER_PRIVATE_KEY !== undefined
? [
OWNER_PRIVATE_KEY,
HOSPITAL_PRIVATE_KEY,
DOCTOR_PRIVATE_KEY,
PATIENT_PRIVATE_KEY,
]
: [],
// accounts: {
// mnemonic: MNEMONIC,
// },
saveDeployments: true,
chainId: 4,
blockConfirmations: 6,
allowUnlimitedContractSize: true,
},
goerli: {
url: GOERLI_RPC_URL,
accounts:
OWNER_PRIVATE_KEY !== undefined
? [
OWNER_PRIVATE_KEY,
HOSPITAL_PRIVATE_KEY,
DOCTOR_PRIVATE_KEY,
PATIENT_PRIVATE_KEY,
]
: [],
// accounts: {
// mnemonic: MNEMONIC,
// },
saveDeployments: true,
chainId: 5,
blockConfirmations: 6,
allowUnlimitedContractSize: true,
},
mainnet: {
url: MAINNET_RPC_URL,
accounts:
OWNER_PRIVATE_KEY !== undefined
? [
OWNER_PRIVATE_KEY,
HOSPITAL_PRIVATE_KEY,
DOCTOR_PRIVATE_KEY,
PATIENT_PRIVATE_KEY,
]
: [],
// accounts: {
// mnemonic: MNEMONIC,
// },
saveDeployments: true,
chainId: 1,
blockConfirmations: 6,
allowUnlimitedContractSize: true,
},
polygon: {
url: POLYGON_MAINNET_RPC_URL,
accounts:
OWNER_PRIVATE_KEY !== undefined
? [
OWNER_PRIVATE_KEY,
HOSPITAL_PRIVATE_KEY,
DOCTOR_PRIVATE_KEY,
PATIENT_PRIVATE_KEY,
]
: [],
saveDeployments: true,
chainId: 137,
blockConfirmations: 6,
allowUnlimitedContractSize: true,
},
},
etherscan: {
// npx hardhat verify --network <NETWORK> <CONTRACT_ADDRESS> <CONSTRUCTOR_PARAMETERS>
apiKey: {
rinkeby: ETHERSCAN_API_KEY,
kovan: ETHERSCAN_API_KEY,
polygon: POLYGONSCAN_API_KEY,
goerli: ETHERSCAN_API_KEY,
},
},
gasReporter: {
enabled: REPORT_GAS,
currency: "USD",
outputFile: "gas-report.txt",
noColors: true,
coinmarketcap: process.env.COINMARKETCAP_API_KEY,
},
contractSizer: {
runOnCompile: true,
},
namedAccounts: {
deployer: {
default: 0, // here this will by default take the first account as deployer
1: 0, // similarly on mainnet it will take the 0th account as deployer. Note though that depending on how hardhat network are configured, the account 0 on one network can be different than on another
},
hospital: {
default: 1,
},
doctor: {
default: 2,
},
patient: {
default: 3,
},
},
solidity: {
compilers: [
{
version: "0.8.7",
},
],
},
mocha: {
timeout: 200000, // 200 seconds max for running tests
},
}