-
Notifications
You must be signed in to change notification settings - Fork 6
/
main.ts
486 lines (451 loc) · 16.9 KB
/
main.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
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
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
//@ts-types='./fadroma/toolbox/cmds/cmds.ts'
import Commands from "@hackbg/cmds"
import { bold } from "@hackbg/logs"
import type { Console } from "@hackbg/logs"
import process from 'node:process'
//@ts-types='./fadroma/packages/namada/Namada.ts'
import type { Validator } from "@fadroma/namada"
// For examples how to define commands, see:
// https://github.com/hackbg/fadroma/blob/v2/packages/namada/namada.ts
//
// Note that in this module it is preferable to use dynamic imports
// at the top of each command rather than all at the top of the file,
// so that temporary breakage in one code path does not break
// potentially unrelated entrypoints.
export default class UndexerCommands extends Commands {
declare log: Console // FIXME
constructor (...args: ConstructorParameters<typeof Commands>) {
super(...args)
this.log.label = ''
}
api = this.command({
name: "api",
info: "run the API server"
}, () => import('./bin/api.js'))
indexer = this.command({
name: "index",
info: "run the indexer"
}, () => import('./bin/indexer.js'))
dbStatus = this.command({
name: 'db status',
info: 'show the status of the database'
}, async () => {
const DB = await import('./src/db.js')
console.log('Rows in DB:')
console.log('Blocks:', await DB.Block.count())
console.log('Transactions:', await DB.Transaction.count())
console.log('Validators:', await DB.Validator.count())
console.log('Proposals:', await DB.Proposal.count())
console.log('Proposal WASM binaries:', await DB.ProposalWASM.count())
console.log('Votes:', await DB.Vote.count())
})
dbSync = this.command({
name: "db sync",
info: "create database"
}, async () => {
const { default: db } = await import('./src/db.js')
this.log.br().log('Trying to sync database schema...')
await db.sync()
this.log.br().log('Done.')
})
dbSyncDrop = this.command({
name: "db sync drop",
info: "UNSAFE: delete and re-create database with latest schema"
}, async () => {
const { default: db } = await import('./src/db.js')
this.log.br().log('Trying to force-sync database schema...')
await db.sync({ force: true })
this.log.br().log('Done.')
})
dbSyncAlter = this.command({
name: "db sync alter",
info: "UNSAFE: alter database to latest schema"
}, async () => {
const { default: db } = await import('./src/db.js')
this.log.br().log('Trying to alter database schema...')
await db.sync({ alter: true })
this.log.br().log('Done.')
})
queries = this.command({
name: 'db queries',
info: 'test all db queries',
}, async () => {
for (const [name, item] of Object.entries(await import('./src/dbQuery.js'))) {
if (typeof item === 'function') {
this.log.br().log(name)
this.log(await item())
}
}
})
blockFetch = this.command({
name: 'block fetch',
info: 'fetch and print a block of transactions',
args: '[HEIGHT]'
}, async (height?: number) => {
const t0 = performance.now()
const { default: getRPC } = await import('./src/rpc.js')
const chain = await getRPC()
// Fetch and decode block
const block = await chain.fetchBlock({ height })
height ??= block.height
// Print block and transactions
this.log.br().log(block)
for (const transaction of block.transactions) {
const { hash, data: { batch, sections, content, ...data } } = transaction
this.log.br()
.log('Transaction', hash, ':', data)
.log('Sections of', hash, ':', sections)
.log('Batched in', hash, ':', batch)
.log('Content of', hash, ':', content)
}
this.log.info('Done in', performance.now() - t0, 'msec')
})
blockIndex = this.command({
name: 'block index',
info: 'fetch, print, and store a block of transactions',
args: '[HEIGHT]'
}, async (height?: number) => {
const t0 = performance.now()
const { Updater } = await import('./src/indexUpdater.js')
const { default: getRPC } = await import('./src/rpc.js')
const chain = await getRPC()
// Fetch and decode block
const block = await chain.fetchBlock({ height })
height ??= block.height
// Print block and transactions
this.log.br().log(block)
for (const transaction of block.transactions) {
const { hash, data: { batch, sections, ...data } } = transaction
this.log.br()
.log('Transaction', hash, ':', data)
.log('Sections for', hash, ':', sections)
.log('Batch in', hash, ':', batch)
}
// Write block to database
this.log.br().log('Syncing database...')
const { default: db } = await import('./src/db.js')
await db.sync()
this.log.br().log('Saving block', height, 'to database...').br()
const updater = new Updater({ log: this.log, chain })
await updater.updateBlock({ height, block, })
this.log.info('Done in', performance.now() - t0, 'msec')
})
validatorsFetchList = this.command({
name: 'validators fetch list',
info: 'fetch list of validators',
args: '[EPOCH]'
}, async (epoch?: string) => {
const { default: getRPC } = await import('./src/rpc.js')
const chain = await getRPC()
const addresses = Object.values(await chain.fetchValidators({
epoch,
tendermintMetadata: false,
namadaMetadata: false,
})).map((v: Validator)=>v.namadaAddress).sort()
if (epoch) {
this.log.log(`Validators at epoch ${epoch}:`)
} else {
this.log.log('Validators at current epoch:')
}
for (const address of addresses) {
this.log.log('Validator:', address)
}
this.log
.log(addresses.length, epoch
? `validator(s) at epoch ${epoch}`
: `validator(s) at current epoch`)
.br()
.info("Use the 'validators fetch all' command to get details.")
})
validatorsFetchAll = this.command({
name: 'validators fetch all',
info: 'fetch detailed info about validators',
args: '[EPOCH]'
}, async (epoch?: string) => {
const { default: getRPC } = await import('./src/rpc.js')
const chain = await getRPC()
const validators = Object.values(await chain.fetchValidators({ epoch }))
const states: Record<string, number> = {}
for (const validator of validators) {
this.log.br().log(validator)
states[(validator as Validator).state?.state]??=0
states[(validator as Validator).state?.state]++
}
this.log.br().info(validators.length, "validators.")
for (const [state, count] of Object.entries(states)) {
this.log.info(`${state}:`.padEnd(16), count)
}
})
validatorsUpdate = this.command({
name: 'validators update',
info: 'fetch validators and update in db'
}, async () => {
const { default: getRPC } = await import('./src/rpc.js')
const chain = await getRPC()
const { Updater } = await import('./src/indexUpdater.js')
const validators = await new Updater({ chain }).updateAllValidators(chain)
for (const i in validators||[]) {
console.log(`#${Number(i)+1}:`, validators[i])
}
})
validatorsStates = this.command({
name: 'validators states',
info: 'count validators in database by state'
}, async () => {
const { callRoute, dbValidatorStates } = await import('./src/routes.js')
const states = await callRoute(dbValidatorStates)
console.log({states})
})
validatorsQuery = this.command({
name: 'validators query',
info: 'query validators from db'
}, async () => {
const { validatorsTop } = await import('./src/dbQuery.js')
const validators = (await validatorsTop()).map(x=>x.toJSON());
console.log(validators)
const { routes } = await import('./src/routes.js')
const dbValidatorByHash = Object.fromEntries(routes)['/validator']
for (const { publicKey } of validators) {
console.log(await new Promise((resolve, reject)=>dbValidatorByHash(
{ query: { publicKey, uptime: 100 } },
{ status: (code: number) => ({
send: (data: unknown) => (code===200)
? resolve(data)
: reject(Object.assign(new Error(`route returned ${code}`), data))
}) } )))
}
})
becameValidator = this.command({
name: 'validator query become',
info: 'query tx_become_validator',
args: 'ADDRESS',
}, async (address: string) => {
const { becomeValidatorCount, becomeValidatorList } = await import('./src/dbQuery.js')
const t0 = performance.now()
this.log
.log(await becomeValidatorCount({ address }),
'becomeValidator(s) for', bold(address))
.log(await becomeValidatorList({ address }))
.log(`Done in ${(performance.now() - t0).toFixed(3)}msec`)
})
changedValidatorMetadata = this.command({
name: 'validator query change metadata',
info: 'query tx_change_validator_metadata',
args: 'ADDRESS',
}, async (validator: string) => {
const { changeValidatorMetadataCount, changeValidatorMetadataList } = await import('./src/dbQuery.js')
const t0 = performance.now()
this.log
.log(await changeValidatorMetadataCount({ validator }),
'changeValidatorMetadata(s) for', bold(validator))
.log(await changeValidatorMetadataList({ validator }))
.log(`Done in ${(performance.now() - t0).toFixed(3)}msec`)
})
deactivatedValidator = this.command({
name: 'validator query deactivate',
info: 'query tx_deactivate_validator',
args: 'ADDRESS',
}, async (address: string) => {
const { deactivateValidatorCount, deactivateValidatorList } = await import('./src/dbQuery.js')
const t0 = performance.now()
this.log
.log(await deactivateValidatorCount({ address }),
'deactivateValidator(s) for', bold(address))
.log(await deactivateValidatorList({ address }))
.log(`Done in ${(performance.now() - t0).toFixed(3)}msec`)
})
parameters = this.command({
name: 'parameters',
info: 'fetch chain parameters'
}, async () => {
const { default: getRPC } = await import('./src/rpc.js')
const chain = await getRPC()
const parameters = await chain.fetchProtocolParameters()
console.log({parameters})
})
proposalCount = this.command({
name: 'proposal count',
info: 'fetch count of proposals from chain'
}, () => import('./src/rpc.js')
.then(({ default: getRPC })=>getRPC())
.then(chain=>chain.fetchProposalCount())
.then((count)=>this.log
.log('Proposals on chain:', count)))
proposalFetch = this.command({
name: 'proposal fetch',
args: 'ID',
info: 'fetch proposal from chain'
}, async (id: string) => {
const chain = await import('./src/rpc.js').then(({ default: getRPC })=>getRPC())
const data = await chain.fetchProposalInfo(id)
if (data) {
this.log.log('Proposal:', data)
const result = await chain.fetchProposalResult(id)
this.log.log('Result:', result)
if (data.proposal?.type?.type === 'DefaultWithWasm') {
const wasm = await chain.fetchProposalWasm(id)
if (wasm) {
this.log.log('WASM:', wasm.wasm.length, 'bytes')
}
}
let epoch = await chain.fetchEpoch()
//if (epoch > data.proposal.votingEndEpoch) {
//epoch = data.proposal.votingEndEpoch
//}
for (;epoch > 0n; epoch--) {
const stake = await chain.fetchTotalStaked(epoch)
this.log.br().log(`Total stake at ${epoch}:`, stake)
const votes = await chain.fetchProposalVotes(id, epoch)
this.log.br().log(`Votes at ${epoch}:`)
for (const vote of votes) {
while (true) try {
if (vote.isValidator) {
vote.power = await chain.fetchValidatorStake(vote.validator, epoch)
} else {
vote.power = await chain.fetchBondWithSlashing(vote.validator, vote.delegator, epoch)
}
this.log.log('Vote:', vote)
break
} catch (e) {
console.warn(e)
console.info('Retrying in 1s...')
await new Promise(resolve=>setTimeout(resolve, 1000))
}
if (vote.power === 1n) process.exit(123)
}
}
} else {
this.log.error(`Proposal ${id} not found.`)
}
})
proposalIndex = this.command({
name: 'proposal index',
args: 'ID',
info: 'fetch and store proposal from chain'
}, async (id: string) => {
const chain = await import('./src/rpc.js').then(({ default: getRPC })=>getRPC())
const { Updater } = await import('./src/indexUpdater.js')
const updater = new Updater({ chain })
await updater.updateProposal(id)
})
epoch = this.command({
name: 'epoch',
args: '[HEIGHT]',
info: 'fetch epoch for given or latest block'
}, (height: string) =>
import('./src/rpc.js')
.then(({ default: getRPC })=>getRPC())
.then(chain=>chain.fetchEpoch({
height: (height === undefined) ? undefined : Number(height)
}))
.then(this.log)
.catch(this.log.error))
transfersBy = this.command({
name: 'transfers by',
info: 'return transfers for given address',
args: 'ADDRESS'
}, async (address: string) => {
const { transferList } = await import('./src/dbQuery.js')
const t0 = performance.now()
console.log(await transferList({ address }))
console.log(`Done in ${(performance.now() - t0).toFixed(3)}msec`)
})
bondsFrom = this.command({
name: 'bonds from',
info: 'return bonds from given source',
args: 'ADDRESS'
}, async (source: string) => {
const { bondCount, bondList } = await import('./src/dbQuery.js')
const t0 = performance.now()
this.log
.log(await bondCount({ source }), 'bond(s) from', bold(source))
.log(await bondList({ source }))
.log(`Done in ${(performance.now() - t0).toFixed(3)}msec`)
})
bondsTo = this.command({
name: 'bonds to',
info: 'return bonds to given validator',
args: 'ADDRESS'
}, async (validator: string) => {
const { bondCount, bondList } = await import('./src/dbQuery.js')
const t0 = performance.now()
this.log
.log(await bondCount({ validator }), 'bond(s) to', bold(validator))
.log(await bondList({ validator }))
.log(`Done in ${(performance.now() - t0).toFixed(3)}msec`)
})
unbondsFrom = this.command({
name: 'unbonds from',
info: 'return unbonds from given source',
args: 'ADDRESS'
}, async (source: string) => {
const { unbondCount, unbondList } = await import('./src/dbQuery.js')
const t0 = performance.now()
this.log
.log(await unbondCount({ source }), 'unbond(s) from', bold(source))
.log(await unbondList({ source }))
.log(`Done in ${(performance.now() - t0).toFixed(3)}msec`)
})
unbondsTo = this.command({
name: 'unbonds to',
info: 'return unbonds to given validator',
args: 'ADDRESS'
}, async (validator: string) => {
const { unbondCount, unbondList } = await import('./src/dbQuery.js')
const t0 = performance.now()
this.log
.log(await unbondCount({ validator }), 'unbond(s) to', bold(validator))
.log(await unbondList({ validator }))
.log(`Done in ${(performance.now() - t0).toFixed(3)}msec`)
})
reindexTransactions = this.command({
name: 'txs reindex',
info: 'reindex only blocks containing transactions',
args: '[MIN_BLOCK]'
}, async (minHeight: number = 0) => {
const {Transaction} = await import('./src/db.js')
const attributes = { include: [ 'blockHeight' ] }
const where = { /* TODO filter by tx type */ }
const txs = await Transaction.findAll({ where, attributes })
const blocks = new Set(txs.map(tx=>tx.get().blockHeight).filter(height=>height>=minHeight))
this.log(blocks.size, 'blocks containing transaction')
const { Updater } = await import('./src/indexUpdater.js')
const chain = await import('./src/rpc.js').then(({ default: getRPC })=>getRPC())
for (const height of [...new Set(blocks)].sort()) {
while (true) {
this.log('Reindexing block', height)
try {
const updater = new Updater({ chain })
await updater.updateBlock({ height, block: undefined })
break
} catch (e) {
console.error(e)
this.log.error('Failed to reindex block', height, 'retrying in 1s')
await new Promise(resolve=>setTimeout(resolve, 1000))
}
}
}
})
queryTransactions = this.command({
name: 'txs query',
info: 'query transactions with given address',
args: 'ADDRESS'
}, async (address: string) => {
const { txWithAddressCount, txWithAddressList } = await import('./src/dbQuery.js')
const t0 = performance.now()
this.log
.log(await txWithAddressCount({ address }), 'tx(s) with', bold(address))
.log(await txWithAddressList({ address }))
.log(`Done in ${(performance.now() - t0).toFixed(3)}msec`)
})
fetchTotalStake = this.command({
name: 'total stake',
info: 'query total staked amount',
args: '[EPOCH]'
}, async (epoch?: number|string|bigint) => {
const { default: getRPC } = await import('./src/rpc.js')
const chain = await getRPC()
const stake = await chain.fetchTotalStaked(epoch)
this.log.log('Total staked:', stake)
})
}