-
Notifications
You must be signed in to change notification settings - Fork 7
/
hardhat.config.js
334 lines (292 loc) Β· 10.1 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
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
// Load Libraries
const chalk = require('chalk');
const fs = require("fs");
require("@nomiclabs/hardhat-waffle");
require("@nomiclabs/hardhat-etherscan");
require("@nomiclabs/hardhat-ethers");
require("hardhat-gas-reporter");
const { ethers } = require("ethers");
const { isAddress, getAddress, formatUnits, parseUnits } = ethers.utils;
// Check ENV File first and load ENV
verifyENV();
async function verifyENV() {
const envVerifierLoader = require('./loaders/envVerifier');
envVerifierLoader(true);
}
require('dotenv').config();
//
// Select the network you want to deploy to here:
//
const defaultNetwork = "hardhat";
module.exports = {
defaultNetwork,
// don't forget to set your provider like:
// REACT_APP_PROVIDER=https://dai.poa.network in packages/react-app/.env
// (then your frontend will talk to your contracts on the live network!)
// (you will need to restart the `yarn run start` dev server after editing the .env)
networks: {
hardhat: {
// forking: {
// url:
// `https://eth-ropsten.alchemyapi.io/v2/${process.env.ALCHEMY_API}`,
// },
},
localhost: {
url: "http://localhost:8545",
/*
notice no mnemonic here? it will just use account 0 of the buidler node to deploy
(you can put in a mnemonic here to set the deployer locally)
*/
},
goerli: {
url: `https://goerli.infura.io/v3/${process.env.INFURA_PROJECT_ID}`, // <---- YOUR INFURA ID! (or it won't work)
accounts: {
mnemonic: mnemonic(),
},
},
kovan: {
url: `https://kovan.infura.io/v3/${process.env.INFURA_PROJECT_ID}`, // <---- YOUR INFURA ID! (or it won't work)
accounts: {
mnemonic: mnemonic(),
},
},
rinkeby: {
url: `https://rinkeby.infura.io/v3/${process.env.INFURA_PROJECT_ID}`, // <---- YOUR INFURA ID! (or it won't work)
accounts: {
mnemonic: mnemonic(),
},
},
ropsten: {
url: `https://ropsten.infura.io/v3/${process.env.INFURA_PROJECT_ID}`, // <---- YOUR INFURA ID! (or it won't work)
accounts: {
mnemonic: mnemonic(),
},
},
mainnet: {
url: `https://mainnet.infura.io/v3/${process.env.INFURA_PROJECT_ID}`, // <---- YOUR INFURA ID! (or it won't work)
accounts: {
mnemonic: mnemonic(),
},
},
xdai: {
url: "https://dai.poa.network",
gasPrice: 1000000000,
accounts: {
mnemonic: mnemonic(),
},
},
},
etherscan: {
// Your API key for Etherscan
// Obtain one at https://etherscan.io/
apiKey: `${process.env.ETHERSCAN_API}`,
},
solidity: {
compilers: [
{
version: "0.6.11",
settings: {
optimizer: {
enabled: true,
runs: 200,
},
},
}
]
},
};
// ENABLE / DISABLE DEBUG
const DEBUG = true;
function debug(text) {
if (DEBUG) {
console.log(text);
}
}
// To Generate mnemonic
function mnemonic() {
try {
return fs.readFileSync("./wallets/main_mnemonic.txt").toString().trim();
} catch (e) {
if (defaultNetwork !== "localhost") {
console.log(
"β’οΈ WARNING: No mnemonic file created for a deploy account. Try `npx hardhat generate` and then `npx hardhat account`."
);
}
}
return "";
}
task(
"generate",
"Create a mnemonic for builder deploys",
async (_, { ethers }) => {
const generate = async (isSecondary) => {
const bip39 = require("bip39");
const { hdkey } = require('ethereumjs-wallet')
const mnemonic = bip39.generateMnemonic();
const seed = await bip39.mnemonicToSeed(mnemonic);
const hdwallet = hdkey.fromMasterSeed(seed);
const wallet_hdpath = "m/44'/60'/0'/0/";
const account_index = 0;
const fullPath = wallet_hdpath + account_index;
const wallet = hdwallet.derivePath(fullPath).getWallet();
const privateKey = "0x" + wallet.privateKey.toString("hex");
if (DEBUG) console.log(chalk.bgGreen.bold.black(`\n\t\t\t`))
if (DEBUG) console.log(chalk.bgBlack.bold.white(` π° Wallet - ${isSecondary ? "alt_wallet" : "main_wallet"} | ${privateKey} `))
if (DEBUG) console.log(chalk.bgGreen.bold.black(`\t\t\t\n`))
if (DEBUG) console.log("mnemonic", mnemonic);
if (DEBUG) console.log("seed", seed);
if (DEBUG) console.log("fullPath", fullPath);
if (DEBUG) console.log("privateKey", privateKey);
const EthUtil = require("ethereumjs-util");
const address = "0x" + EthUtil.privateToAddress(wallet.privateKey).toString("hex");
console.log(
"π Account Generated as " +
address +
".txt and set as mnemonic in packages/buidler"
);
console.log(
"π¬ Use 'npx hardhat account' to get more information about the deployment account."
);
if (isSecondary) {
fs.writeFileSync("./wallets/alt_" + address + ".txt", mnemonic.toString() + "\n" + privateKey);
fs.writeFileSync("./wallets/alt_mnemonic.txt", mnemonic.toString());
}
else {
fs.writeFileSync("./wallets/main_" + address + ".txt", mnemonic.toString() + "\n" + privateKey);
fs.writeFileSync("./wallets/main_mnemonic.txt", mnemonic.toString());
}
if (DEBUG) console.log("\n------\n");
}
await generate()
await generate(true)
}
);
task(
"account",
"Get balance informations for the deployment account.",
async (_, { ethers }) => {
const showAccount = async (walletName) => {
const { hdkey } = require('ethereumjs-wallet')
const bip39 = require("bip39");
const mnemonic = fs.readFileSync(`./wallets/${walletName}_mnemonic.txt`).toString().trim();
const seed = await bip39.mnemonicToSeed(mnemonic);
const hdwallet = hdkey.fromMasterSeed(seed);
const wallet_hdpath = "m/44'/60'/0'/0/";
const account_index = 0;
const fullPath = wallet_hdpath + account_index;
const wallet = hdwallet.derivePath(fullPath).getWallet();
const privateKey = "0x" + wallet.privateKey.toString("hex");
const EthUtil = require("ethereumjs-util");
const address =
"0x" + EthUtil.privateToAddress(wallet.privateKey).toString("hex");
if (DEBUG) console.log(chalk.bgGreen.bold.black(`\n\t\t\t`))
if (DEBUG) console.log(chalk.bgBlack.bold.white(` π° Wallet - ${walletName} | ${privateKey} `))
if (DEBUG) console.log(chalk.bgGreen.bold.black(`\t\t\t\n`))
if (DEBUG) console.log("mnemonic", mnemonic);
if (DEBUG) console.log("seed", seed);
if (DEBUG) console.log("fullPath", fullPath);
if (DEBUG) console.log("privateKey", privateKey);
if (DEBUG) console.log("βπ¬ Deployer Account is " + address);
const qrcode = require("qrcode-terminal");
qrcode.generate(address);
for (const n in config.networks) {
// console.log(config.networks[n],n)
try {
const provider = new ethers.providers.JsonRpcProvider(
config.networks[n].url
);
const balance = await provider.getBalance(address);
console.log(" -- " + n + " -- -- -- π‘ ");
console.log(" balance: " + ethers.utils.formatEther(balance));
console.log(
// eslint-disable-next-line no-await-in-loop
" nonce: " + (await provider.getTransactionCount(address))
);
} catch (e) {
if (DEBUG) {
console.log(e);
}
}
}
if (DEBUG) console.log("\n------\n");
}
await showAccount("main")
await showAccount("alt")
}
);
async function addr(ethers, addr) {
if (isAddress(addr)) {
return getAddress(addr);
}
const accounts = await ethers.provider.listAccounts();
if (accounts[addr] !== undefined) {
return accounts[addr];
}
throw `Could not normalize address: ${addr}`;
}
task("accounts", "Prints the list of accounts", async (_, { ethers }) => {
const accounts = await ethers.provider.listAccounts();
accounts.forEach((account) => console.log(account));
});
task("blockNumber", "Prints the block number", async (_, { ethers }) => {
const blockNumber = await ethers.provider.getBlockNumber();
console.log(blockNumber);
});
task("balance", "Prints an account's balance")
.addPositionalParam("account", "The account's address")
.setAction(async (taskArgs, { ethers }) => {
const balance = await ethers.provider.getBalance(
await addr(ethers, taskArgs.account)
);
console.log(formatUnits(balance, "ether"), "ETH");
}
);
function send(signer, txparams) {
return signer.sendTransaction(txparams, (error, transactionHash) => {
if (error) {
debug(`Error: ${error}`);
}
debug(`transactionHash: ${transactionHash}`);
// checkForReceipt(2, params, transactionHash, resolve)
});
}
task("send", "Send ETH")
.addParam("from", "From address or account index")
.addOptionalParam("to", "To address or account index")
.addOptionalParam("amount", "Amount to send in ether")
.addOptionalParam("data", "Data included in transaction")
.addOptionalParam("gasPrice", "Price you are willing to pay in gwei")
.addOptionalParam("gasLimit", "Limit of how much gas to spend")
.setAction(async (taskArgs, { network, ethers }) => {
const from = await addr(ethers, taskArgs.from);
debug(`Normalized from address: ${from}`);
const fromSigner = await ethers.provider.getSigner(from);
let to;
if (taskArgs.to) {
to = await addr(ethers, taskArgs.to);
debug(`Normalized to address: ${to}`);
}
const txRequest = {
from: await fromSigner.getAddress(),
to,
value: parseUnits(
taskArgs.amount ? taskArgs.amount : "0",
"ether"
).toHexString(),
nonce: await fromSigner.getTransactionCount(),
gasPrice: parseUnits(
taskArgs.gasPrice ? taskArgs.gasPrice : "1.001",
"gwei"
).toHexString(),
gasLimit: taskArgs.gasLimit ? taskArgs.gasLimit : 24000,
chainId: network.config.chainId,
};
if (taskArgs.data !== undefined) {
txRequest.data = taskArgs.data;
debug(`Adding data to payload: ${txRequest.data}`);
}
debug(txRequest.gasPrice / 1000000000 + " gwei");
debug(JSON.stringify(txRequest, null, 2));
return send(fromSigner, txRequest);
}
);