This repository has been archived by the owner on Jan 20, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hardhat.config.js
315 lines (240 loc) Β· 8.97 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
require('dotenv').config();
const { utils } = require('ethers');
const fs = require('fs');
require('@nomiclabs/hardhat-waffle');
const { isAddress, getAddress, formatUnits, parseUnits } = utils;
const { network } = require('./constants');
const defaultNetwork = network;
function mnemonic() {
try {
return fs.readFileSync('./mnemonic.txt').toString().trim();
} catch (e) {
if (defaultNetwork !== 'localhost') {
console.log(
'β’οΈ WARNING: No mnemonic file created for a deploy account. Try `npm run generate` and then `npm run account`.'
);
}
}
return '';
}
module.exports = {
defaultNetwork,
networks: {
localhost: {
url: 'http://localhost:8545',
},
mainnet: {
url: `https://mainnet.infura.io/v3/${process.env.INFURA_API_KEY}`,
accounts: {
mnemonic: mnemonic(),
},
},
rinkeby: {
url: `https://rinkeby.infura.io/v3/${process.env.INFURA_API_KEY}`,
accounts: {
mnemonic: mnemonic(),
},
},
kovan: {
url: `https://kovan.infura.io/v3/${process.env.INFURA_API_KEY}`,
accounts: {
mnemonic: mnemonic(),
},
},
ropsten: {
url: `https://ropsten.infura.io/v3/${process.env.INFURA_API_KEY}`,
accounts: {
mnemonic: mnemonic(),
},
},
},
solidity: {
compilers: [
{
version: '0.4.26',
settings: {
optimizer: {
enabled: true,
runs: 200,
},
},
},
{
version: '0.7.0',
settings: {
optimizer: {
enabled: true,
runs: 200,
},
},
},
],
},
};
const DEBUG = false;
function debug(text) {
if (DEBUG) {
console.log(text);
}
}
task('wallet', 'Create a wallet (pk) link', async (_, { ethers }) => {
const randomWallet = ethers.Wallet.createRandom();
const privateKey = randomWallet._signingKey().privateKey;
console.log('π WALLET Generated as ' + randomWallet.address + '');
console.log('π http://localhost:3000/pk#' + privateKey);
});
task('fundedwallet', 'Create a wallet (pk) link and fund it with deployer?')
.addOptionalParam('amount', 'Amount of ETH to send to wallet after generating')
.addOptionalParam('url', 'URL to add pk to')
.setAction(async (taskArgs, { network, ethers }) => {
const randomWallet = ethers.Wallet.createRandom();
const privateKey = randomWallet._signingKey().privateKey;
console.log('π WALLET Generated as ' + randomWallet.address + '');
let url = taskArgs.url ? taskArgs.url : 'http://localhost:3000';
let localDeployerMnemonic;
try {
localDeployerMnemonic = fs.readFileSync('./mnemonic.txt');
localDeployerMnemonic = localDeployerMnemonic.toString().trim();
} catch (e) {
// do nothing - this file isn't always there
}
let amount = taskArgs.amount ? taskArgs.amount : '0.01';
const tx = {
to: randomWallet.address,
value: ethers.utils.parseEther(amount),
};
// send using local deployer mnemonic if there is one, if not send using local hardhat node
if (localDeployerMnemonic) {
let deployerWallet = new ethers.Wallet.fromMnemonic(localDeployerMnemonic);
deployerWallet = deployerWallet.connect(ethers.provider);
console.log('π΅ Sending ' + amount + ' ETH to ' + randomWallet.address + ' using deployer account');
let sendresult = await deployerWallet.sendTransaction(tx);
console.log('\n' + url + '/pk#' + privateKey + '\n');
return;
} else {
console.log('π΅ Sending ' + amount + ' ETH to ' + randomWallet.address + ' using local node');
console.log('\n' + url + '/pk#' + privateKey + '\n');
return send(ethers.provider.getSigner(), tx);
}
});
task('generate', 'Create a mnemonic for builder deploys', async (_, { ethers }) => {
const bip39 = require('bip39');
const hdkey = require('ethereumjs-wallet/hdkey');
const mnemonic = bip39.generateMnemonic();
if (DEBUG) console.log('mnemonic', mnemonic);
const seed = await bip39.mnemonicToSeed(mnemonic);
if (DEBUG) console.log('seed', seed);
const hdwallet = hdkey.fromMasterSeed(seed);
const wallet_hdpath = "m/44'/60'/0'/0/";
const account_index = 0;
let fullPath = wallet_hdpath + account_index;
if (DEBUG) console.log('fullPath', fullPath);
const wallet = hdwallet.derivePath(fullPath).getWallet();
const privateKey = '0x' + wallet._privKey.toString('hex');
if (DEBUG) console.log('privateKey', privateKey);
var EthUtil = require('ethereumjs-util');
const address = '0x' + EthUtil.privateToAddress(wallet._privKey).toString('hex');
console.log('π Account Generated as ' + address + ' and set as mnemonic in packages/hardhat');
console.log("π¬ Use 'npm run account' to get more information about the deployment account.");
fs.writeFileSync('./' + address + '.txt', mnemonic.toString());
fs.writeFileSync('./mnemonic.txt', mnemonic.toString());
});
task('account', 'Get balance informations for the deployment account.', async (_, { ethers }) => {
const hdkey = require('ethereumjs-wallet/hdkey');
const bip39 = require('bip39');
let mnemonic = fs.readFileSync('./mnemonic.txt').toString().trim();
if (DEBUG) console.log('mnemonic', mnemonic);
const seed = await bip39.mnemonicToSeed(mnemonic);
if (DEBUG) console.log('seed', seed);
const hdwallet = hdkey.fromMasterSeed(seed);
const wallet_hdpath = "m/44'/60'/0'/0/";
const account_index = 0;
let fullPath = wallet_hdpath + account_index;
if (DEBUG) console.log('fullPath', fullPath);
const wallet = hdwallet.derivePath(fullPath).getWallet();
const privateKey = '0x' + wallet._privKey.toString('hex');
if (DEBUG) console.log('privateKey', privateKey);
var EthUtil = require('ethereumjs-util');
const address = '0x' + EthUtil.privateToAddress(wallet._privKey).toString('hex');
var qrcode = require('qrcode-terminal');
qrcode.generate(address);
console.log('βπ¬ Deployer Account is ' + address);
for (let n in config.networks) {
try {
let provider = new ethers.providers.JsonRpcProvider(config.networks[n].url);
let balance = await provider.getBalance(address);
console.log(' -- ' + n + ' -- -- -- π‘ ');
console.log(' balance: ' + ethers.utils.formatEther(balance));
console.log(' nonce: ' + (await provider.getTransactionCount(address)));
} catch (e) {
if (DEBUG) {
console.log(e);
}
}
}
});
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}`);
});
}
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);
});