-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtasks.ts
313 lines (279 loc) · 10.1 KB
/
tasks.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
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
import '@nomiclabs/hardhat-ethers'
import * as fs from 'fs'
import * as chalk from 'chalk'
import { task } from 'hardhat/config'
import { BigNumber as BN, Signer } from 'ethers'
const DEBUG = false
function debug(text: string) {
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 = ethers.Wallet.fromMnemonic(
localDeployerMnemonic.toString()
)
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 'yarn run account' to get more information about the deployment account."
)
fs.writeFileSync("./" + address + ".txt", mnemonic.toString())
fs.writeFileSync("./mnemonic.txt", mnemonic.toString())
}
)
task(
"mineContractAddress",
"Looks for a deployer account that will give leading zeros"
)
.addParam("searchFor", "String to search for")
.setAction(async (taskArgs, { network, ethers }) => {
let contract_address = ""
let address
const bip39 = require("bip39")
const hdkey = require("ethereumjs-wallet/hdkey")
let mnemonic = ""
while (contract_address.indexOf(taskArgs.searchFor) != 0) {
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")
address =
"0x" + EthUtil.privateToAddress(wallet._privKey).toString("hex")
const rlp = require("rlp")
const keccak = require("keccak")
let nonce = 0x00 //The nonce must be a hex literal!
let sender = address
let input_arr = [sender, nonce]
let rlp_encoded = rlp.encode(input_arr)
let contract_address_long = keccak("keccak256")
.update(rlp_encoded)
.digest("hex")
contract_address = contract_address_long.substring(24) //Trim the first 24 characters.
}
console.log(
"⛏ Account Mined as " +
address +
" and set as mnemonic in packages/hardhat"
)
console.log(
"📜 This will create the first contract: " +
chalk.magenta("0x" + contract_address)
)
console.log(
"💬 Use 'yarn run account' to get more information about the deployment account."
)
fs.writeFileSync(
"./" + address + "_produces" + contract_address + ".txt",
mnemonic.toString()
)
fs.writeFileSync("./mnemonic.txt", mnemonic.toString())
})
task(
"account",
"Get balance informations for the deployment account.",
async (_, { ethers, config }) => {
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) {
//console.log(config.networks[n],n)
try {
let balance = await ethers.provider.getBalance(address)
console.log(" -- " + n + " -- -- -- 📡 ")
console.log(" balance: " + ethers.utils.formatEther(balance))
console.log(
" nonce: " + (await ethers.provider.getTransactionCount(address))
)
} catch (e) {
if (DEBUG) {
console.log(e)
}
}
}
}
)
async function addr(ethers: any, addr: string) {
if (ethers.utils.isAddress(addr)) {
return ethers.utils.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(ethers.utils.formatUnits(balance, "ether"), "ETH")
})
async function send(signer: Signer, params: any) {
let txHash = ''
try {
const { hash } = await signer.sendTransaction(params)
txHash = hash
debug(`transactionHash: ${txHash}`)
// checkForReceipt(2, params, transactionHash, resolve)
} catch (err) {
if (err) {
debug(`Error: ${err}`)
}
}
return txHash
}
task("send", "Send ETH")
.addParam("from", "From address or afundWalletccount 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: ethers.utils.parseUnits(
taskArgs.amount ? taskArgs.amount : "0",
"ether"
).toHexString(),
nonce: await fromSigner.getTransactionCount(),
gasPrice: ethers.utils.parseUnits(
taskArgs.gasPrice ? taskArgs.gasPrice : "1.001",
"gwei"
).toHexString(),
gasLimit: taskArgs.gasLimit ? taskArgs.gasLimit : 24000,
chainId: network.config.chainId,
data: undefined
}
if (taskArgs.data !== undefined) {
txRequest.data = taskArgs.data
debug(`Adding data to payload: ${txRequest.data}`)
}
debug(BN.from(txRequest.gasPrice).div(1000000000).toString() + " gwei")
debug(JSON.stringify(txRequest, null, 2))
return send(fromSigner, txRequest)
})