-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
executable file
·349 lines (309 loc) · 16.7 KB
/
index.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
335
336
337
338
339
340
341
342
343
344
345
346
347
348
#!/usr/bin/env node
const program = require('commander');
const fs = require("fs");
const path = require("path");
const chalk = require('chalk');
const clear = require('clear');
const figlet = require('figlet');
const inquirer = require("inquirer");
const ora = require('ora');
const moment = require("moment");
const contract = require("./modules/contractUtils");
const transaction = require("./modules/transactionUtils");
const account = require("./modules/accountUtils");
const block = require("./modules/blockUtils");
const ensUtils = require("./modules/ensUtils");
const spinner = ora('Fetching data from aleth.io');
let base_url;
// {"API_KEY":"main_k5ua5idae7skpuciub5afanpxys3q"}
// ---------------------Define functions necessary for the CLI Tool-------------------------------
///////////////////////////////////////////////////////////////////////////////////
// Check if API Key of the user exists. If not, store the API Key for future use //
///////////////////////////////////////////////////////////////////////////////////
async function checkAPIkey(){
return new Promise(async resolve => {
fs.readFile("./apiKey.json", "utf8", async (err, jsonString) => {
if(err){
let api_key = await inquirer.prompt({
name: "API_KEY",
type: "input",
message: "Please set your API Key first: "
})
base_url = "https://" + api_key.API_KEY + ":@api.aleth.io/v1";
fs.writeFile("./apiKey.json", JSON.stringify(api_key), err =>{
if(err){
console.error(chalk.red("Sorry! Error storing API Key"));
resolve(false);
}
console.log(chalk.bold.cyan("You API Key has been saved!\n"));
resolve(true);
})
}
else{
let api_key_data = JSON.parse(jsonString);
base_url = "https://" + api_key_data.API_KEY + ":@api.aleth.io/v1";
resolve(true);
}
})
})
}
////////////////////////////////////////////////////////
// Command to query details about a specific contract //
////////////////////////////////////////////////////////
program
.command("contract <address>")
.description("Get general details about a contract deployed at the provided address")
.option("-b, --block", "Show details about the block where the contract was created")
.option("-c, --creationTxn", "Show details about the Contract Creation Transaction")
.option("-E, --event <event_signature>", "Aggregate events logged with the same <event_signature> (see examples)")
.option("-f, --transactionsFrom <account>", "Show details of transactions made from <account> to the contract")
.option("-l, --logs", "Show details about <num> latest Log Entries (Events) associated with the contract")
.option("-m, --messages", "Show details about <num> latest Contract Messages (Internal Transactions)")
.option("-n, --number <num>", "Limit the search of transactions, messages, event logs, etc. to <num> latest entries")
.option("-s, --start <timeStamp>", "Date & Time (local) in RFC2822 format (see examples) marking the beginning of the range to search transactions")
.option("-e, --end <timeStamp>", "Date & Time (local) in RFC2822 format (see examples) marking the end of the range to search transactions")
.option('-t, --transactions', "Show details about <num> latest transactions to/from the contract")
.option("-T, --transactionsTo <account>", "Show details of transactions made to <account> by the contract")
.on("--help", async () => {
console.log("\nNote: " + chalk.italic("Without the '-n' flag, the default number of transaction, messages, or events logs displayed is 10"));
console.log("\nExamples:");
console.log(" $ waffle-cli contract 0x89d24A6b4CcB1B6fAA2625fE562bDD9a23260359 -b -c ");
console.log(chalk.gray(" // Displays the block details in which the contract creation was recorded along with the creation transaction\n"));
console.log(" $ waffle-cli contract 0x89d24A6b4CcB1B6fAA2625fE562bDD9a23260359 -t ");
console.log(chalk.gray(" // Displays 10 latest transactions to the contract\n"));
console.log(" $ waffle-cli contract 0x89d24A6b4CcB1B6fAA2625fE562bDD9a23260359 -E 'Transfer(address,address,uint256)' -n 50 ");
console.log(chalk.gray(" // Displays 50 latest events logged by the contract with the given signature\n"))
console.log(" $ waffle-cli contract 0x89d24A6b4CcB1B6fAA2625fE562bDD9a23260359 -f 0x2461AD11C10Ac35Dd8aDAfD6B0Af3AacFAf1C3f5 -n 15 ");
console.log(chalk.gray(" // Displays 15 latest transactions to the contract made by given account\n"));
console.log(" $ waffle-cli contract 0x89d24A6b4CcB1B6fAA2625fE562bDD9a23260359 -m -s '5 Jul 2019 11:00' -e '5 Jul 2019 13:30'");
console.log(chalk.gray(" // Displays contract messages (internal transaction) occuring between 11:00 am & 1:30 pm on 5 July 2019 (according to local timezone)\n"));
})
.action(async (address, options) => {
if(options.transactionsFrom != undefined && options.transactionsTo != undefined){
console.error(chalk.red("Error: Cannot use from & to filters simultaneously!\n"));
return;
}
if((options.start != undefined && options.end == undefined) || (options.start ==undefined && options.end != undefined)){
console.error(chalk.red("Error: Both start & end timeStamps should be used together"));
return;
}
if(options.start != undefined && options.end != undefined && options.number != undefined){
console.error(chalk.red("Error: Cannot use number of transactions with start & end timestamps"));
return;
}
await contract.getDetails(base_url, address);
if(options.transactions){
if(options.number){
if(parseInt(options.number) < 0){
console.error(chalk.red("Number of transactions cannot be less than 0"));
return;
}
await contract.getTransactions(base_url, address, options.number);
}
else if(options.start && options.end){
let start = moment(new Date(options.start).toUTCString()).valueOf()
let end = moment(new Date(options.end).toUTCString()).valueOf()
await contract.getTransactionsInRange(base_url, address, start, end)
}
else await contract.getTransactions(base_url, address, 10);
}
if(options.block){
await contract.getBlock(base_url, address);
}
if(options.creationTxn){
await contract.getCreationTxn(base_url, address);
}
if(options.transactionsFrom){
if(!options.transactionsFrom.startsWith("0x") && options.transactionsFrom.length != 42){
let fromAcc = await ensUtils.getAddress(options.transactionsFrom);
if(fromAcc == "0x0000000000000000000000000000000000000000"){
console.log(chalk.red("Error: ENS name not found!\n"));
return;
}
await contract.getTransactionsFrom(base_url, address, fromAcc);
}
else{
await contract.getTransactionsFrom(base_url, address, options.transactionsFrom);
}
}
else if(options.transactionsTo){
if(!options.transactionsTo.startsWith("0x") && options.transactionsTo.length != 42){
let toAcc = await ensUtils.getAddress(options.transactionsTo);
if(toAcc == "0x0000000000000000000000000000000000000000"){
console.log(chalk.red("Error: ENS name not found!\n"));
return;
}
await contract.getTransactionsFrom(base_url, address, toAcc);
}
else{
await contract.getTransactionsTo(base_url, address, options.transactionsTo);
}
}
if(options.messages){
if(options.start && options.end){
let start = moment(new Date(options.start).toUTCString()).valueOf()
let end = moment(new Date(options.end).toUTCString()).valueOf()
await contract.getMessagesInRange(base_url, address, start, end)
}
// else await contract.getTransactions(base_url, address, 10);
else await contract.getMessages(base_url, address, options.number || 10);
}
if(options.logs){
await contract.getLogEntries(base_url, address, options.number || 10);
}
if(options.event != undefined){
await contract.aggregateEventBySignature(base_url, address, options.event, options.number || 10);
}
})
//////////////////////////////////////////////////////
// Command to search for an address/hash/ENS domain //
//////////////////////////////////////////////////////
program
.command("search <query>")
.description("Checks whether the queried entity is an external account, contract account, transaction or a block hash")
.action(async (query) => {
spinner.start();
if(!query.startsWith("0x") && query.endsWith(".eth")){
let addr = await ensUtils.getAddress(query);
if(addr == "0x0000000000000000000000000000000000000000"){
console.log(chalk.red("Error: ENS name not found!\n"));
process.exit();
}
query = addr;
}
const e = await fetch(base_url+`/accounts/${query}`);
const c = await fetch(base_url+`/contracts/${query}`);
const t = await fetch(base_url+`/transactions/${query}`);
const b = await fetch(base_url+`/blocks/${query}`);
spinner.stop();
let es = (await e.status);
let cs = (await c.status);
let ts = (await t.status);
let bs = (await b.status);
if(es == 200 && cs == 200) {
console.log(chalk.bold.cyan('Contract Account'));
console.log(`Use ` + chalk.italic.yellow(`'waffle-cli contract ${query} [options]'`) +` to get more details\n`);
}
else if (es == 200) {
console.log(chalk.bold.cyan('External(User) Account'));
console.log(`Use ` + chalk.italic.yellow(`'waffle-cli account ${query} [options]'`) +` to get more details\n`);
}
else if (ts == 200) {
console.log(chalk.bold.cyan('Transaction'));
console.log(`Use ` + chalk.italic.yellow(`'waffle-cli transaction ${query} [options]'`) +` to get more details\n`);
}
else if (bs == 200) {
console.log(chalk.bold.cyan('Block Hash'));
console.log(`Use ` + chalk.italic.yellow(`'waffle-cli block ${query} [options]'`) +` to get more details\n`);
}
else{
console.error(chalk.red("Error: Incorrect query!\n"))
}
})
///////////////////////////////////////////////////////////
// Command to query details about a specific transaction //
///////////////////////////////////////////////////////////
program
.command("transaction <hash>")
.description("Get general details about the transaction given by the hash")
// .options()
.action(async (hash) => {
transaction.getDetails(base_url, hash);
})
///////////////////////////////////////////////////////
// Command to query details about a specific account //
///////////////////////////////////////////////////////
program
.command("account <address>")
.description("Get general details about the account address or ENS domain")
.option("-T, --tokenTransfers", "Get details about token transfers made to/from the <address>")
.option("-E, --etherTransfers", "Get details about ether transfers made to/from the <address>")
.option("-b, --tokenBalances", "Get balances of all tokens held by <address>")
.option("-s, --symbol <symbol>", "Symbol of token to query for")
.option("-f, --from <fromAddress>", "Filter transfers by <from address>")
.option("-t, --to <toAddress>", "Filter transfers by <to address>")
// .options()
.on("--help", async () => {
console.log("\nExamples:");
console.log(" $ waffle-cli account 0x2461ad11c10ac35dd8adafd6b0af3aacfaf1c3f5");
console.log(chalk.gray(" // Displays basic details about given <address> & 10 latest transactions\n"));
console.log(" $ waffle-cli account 0x2461ad11c10ac35dd8adafd6b0af3aacfaf1c3f5 -E -t 0xbae664a51bf25898bc587f8a1c650bebc2ef4cf3");
console.log(chalk.gray(" // Displays all ether transfers to <toAddress> from the given <address>\n"));
console.log(" $ waffle-cli account 0x2461ad11c10ac35dd8adafd6b0af3aacfaf1c3f5 -T");
console.log(chalk.gray(" // Displays all token transfers to/from the given <address>\n"));
console.log(" $ waffle-cli account 0x2461ad11c10ac35dd8adafd6b0af3aacfaf1c3f5 -T -s 'DAI'");
console.log(chalk.gray(" // Display all DAI token transfers to/from the given <address>\n"));
console.log(" $ waffle-cli account 0x2461ad11c10ac35dd8adafd6b0af3aacfaf1c3f5 -T -s 'DAI' -f 0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950");
console.log(chalk.gray(" // Display all DAI token transfers from the <fromAddress> to the given <address>\n"));
console.log(" $ waffle-cli account 0x2461ad11c10ac35dd8adafd6b0af3aacfaf1c3f5 -T -t 0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950");
console.log(chalk.gray(" // Display all DAI token transfers to the <toAddress> by the given <address>\n"));
})
.action(async (address, options) => {
let filters = {}
filters.exists = false;
if(options.etherTransfers && options.tokenTransfers){
console.log(chalk.red("Error: Cannot use both -etherTransfers & --tokenTransfers at the same time\n"));
return;
}
if(options.tokenTransfers || options.etherTransfers || options.tokenBalances){
filters.exists = true;
}
filters.tokenBalances = options.tokenBalances;
filters.tokenTransfers = options.tokenTransfers;
filters.etherTransfers = options.etherTransfers;
filters.symbol = options.symbol;
filters.from = options.from;
filters.to = options.to
// console.log(filters)
let ethAddr;
if(!address.startsWith("0x") && address.length != 42 && address.endsWith(".eth")){
ethAddr = await ensUtils.getAddress(address);
if(ethAddr == "0x0000000000000000000000000000000000000000"){
console.log(chalk.red("Error: ENS name not found!\n"));
return;
}
// await account.getDetails(base_url, ethAddr);
}
else{
ethAddr = address;
// await account.getDetails(base_url, address);
}
await account.getDetails(base_url, ethAddr, filters)
})
/////////////////////////////////////////////////////
// Command to query details about a specific block //
/////////////////////////////////////////////////////
program
.command("block <identifier>")
.description("Get general details about the block given by the block hash or block number")
.option("-t, --transactions", "Display details about all transactions included in the block")
.action(async (identifier, options) => {
block.getDetails(base_url, identifier, options.transactions);
})
//////////////////////////////
// Custom help for over CLI //
//////////////////////////////
program.on("--help", function(){
console.log("\n");
console.log(chalk.italic.cyan("This is a CLI tool for Ethereum Developers, created by Tezan Sahu & Smit Rajput, using Aleth.io\n"));
console.log(chalk.italic.cyan("This project was started as a part of Gitcoin's Beyond Blockchain Hackathon aiming to serve as a CLI block explorer curated for developers to monitor smart contracts & much more.\n"))
console.log(chalk.italic.cyan("Use the '--help' for a command to know the queries that could be made using the tool.\n"));
})
/////////////////////////////////////////////////////////////////////////////////////////
// Parse the command (& options) entered by the user and call the appropriate function //
/////////////////////////////////////////////////////////////////////////////////////////
async function run(){
clear();
console.log(
chalk.yellow(
figlet.textSync('waffle-CLI', { horizontalLayout: 'full' })
)
);
let api_key_verified = await checkAPIkey();
if(api_key_verified == true){
program
.version("0.0.1")
.parse(process.argv)
}
}
run()