cns 0.8.4 → 0.8.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/lib/cns/bigquery.rb +167 -187
- data/lib/cns/bitcoinde.rb +10 -12
- data/lib/cns/etherscan.rb +75 -72
- data/lib/cns/greymass.rb +7 -12
- data/lib/cns/kraken.rb +10 -10
- data/lib/cns/version.rb +1 -1
- data/lib/cns.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f4fb8ef5137e35f64fabed9a151d6547d12f21487e602c91404ba5eedcd88a34
|
4
|
+
data.tar.gz: 037a388cdcd7652fa803d76131ba1e7076b2a0983c74f835484005791c3a1fc3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bd36261022378f795e64bc814434879b9f99cd7f7c3ff974a719aa0aed0d40bc16a341fcd11038f49c0e1056ea298acb21bca79644dcff7251eb27d69b4b6118
|
7
|
+
data.tar.gz: b6c078fcfb4e878f6058b785051ba702d8e49afc150767f7a99412d4d9202890e98cd3f3f3896afd11d80d2dc083e94fb220e1ff7a25fd261c8a1c781884abf2
|
data/Gemfile.lock
CHANGED
data/lib/cns/bigquery.rb
CHANGED
@@ -7,11 +7,10 @@ require('bigdecimal/util')
|
|
7
7
|
module Cns
|
8
8
|
BD = 'hernanirvaz.coins'
|
9
9
|
FO = File.expand_path("~/#{File.basename($PROGRAM_NAME)}.log")
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
w: %w[withdrawalindex validatorindex address amount blocknumber timestamp],
|
10
|
+
TB = {
|
11
|
+
i: %w[blocknumber timestamp txhash axfrom axto iax value contractaddress input type gas gasused traceid iserror errcode dias],
|
12
|
+
p: %w[blocknumber timestamp blockreward iax dias],
|
13
|
+
w: %w[withdrawalindex validatorindex address amount blocknumber timestamp dias],
|
15
14
|
t: %w[blocknumber timestamp txhash nonce blockhash transactionindex axfrom axto iax value gas gasprice gasused iserror txreceipt_status input contractaddress dias],
|
16
15
|
k: %w[blocknumber timestamp txhash nonce blockhash transactionindex axfrom axto iax value tokenname tokensymbol tokendecimal gas gasprice gasused input contractaddress dias],
|
17
16
|
neost: %w[gseq aseq bnum time contract action acfrom acto iax amount moeda memo dias],
|
@@ -38,7 +37,7 @@ module Cns
|
|
38
37
|
# usa env GOOGLE_APPLICATION_CREDENTIALS para obter credentials
|
39
38
|
# @see https://cloud.google.com/bigquery/docs/authentication/getting-started
|
40
39
|
@api = Google::Cloud::Bigquery.new
|
41
|
-
@ops = pop
|
40
|
+
@ops = pop.transform_keys(&:to_sym)
|
42
41
|
end
|
43
42
|
|
44
43
|
# mostra situacao completa entre kraken/bitcoinde/paymium/therock/etherscan/greymass & bigquery
|
@@ -67,26 +66,22 @@ module Cns
|
|
67
66
|
|
68
67
|
# insere (caso existam) dados novos kraken/bitcoinde/paymium/therock/etherscan/greymass no bigquery
|
69
68
|
def processa_tudo
|
70
|
-
|
71
|
-
puts(trs_ini + str)
|
69
|
+
puts(trs_ini + "#{processa_us}, #{processa_de}, #{processa_eth}, #{processa_eos}")
|
72
70
|
end
|
73
71
|
|
74
72
|
# insere (caso existam) dados novos kraken/etherscan no bigquery
|
75
73
|
def processa_wkrk
|
76
|
-
|
77
|
-
puts(trs_ini + str)
|
74
|
+
puts(trs_ini + "#{processa_us}, #{processa_eth}")
|
78
75
|
end
|
79
76
|
|
80
77
|
# insere (caso existam) dados novos etherscan no bigquery
|
81
78
|
def processa_weth
|
82
|
-
|
83
|
-
puts(trs_ini + str)
|
79
|
+
puts(trs_ini + processa_eth)
|
84
80
|
end
|
85
81
|
|
86
82
|
# insere (caso existam) dados novos etherscan no bigquery (output to file)
|
87
83
|
def processa_ceth
|
88
|
-
|
89
|
-
File.open(FO, mode: 'a') { |out| out.puts(trs_ini + str) }
|
84
|
+
File.open(FO, mode: 'a') { |out| out.puts(trs_ini + processa_ethc) }
|
90
85
|
end
|
91
86
|
|
92
87
|
private
|
@@ -95,43 +90,35 @@ module Cns
|
|
95
90
|
#
|
96
91
|
# @return [String] linhas & tabelas afetadas
|
97
92
|
def processa_eth
|
98
|
-
|
93
|
+
tabelas_out(apies, %w[ETH], %i[t i p w k], 'neth')
|
99
94
|
end
|
100
95
|
|
101
96
|
# insere transacoes blockchain novas nas tabelas netht (norml), nethi (internas), nethp (block), nethw (withdrawals), nethk (token)
|
102
97
|
#
|
103
98
|
# @return [String] linhas & tabelas afetadas
|
104
99
|
def processa_ethc
|
105
|
-
|
100
|
+
tabelas_out(apiesc, %w[ETH], %i[t i p w k], 'neth')
|
106
101
|
end
|
107
102
|
|
108
103
|
# insere transacoes exchange kraken novas nas tabelas ust (trades), usl (ledger)
|
109
104
|
#
|
110
105
|
# @return [String] linhas & tabelas afetadas
|
111
106
|
def processa_us
|
112
|
-
|
113
|
-
str += format(' %<n>i ust', n: dml(ust_ins)) if apius.trades.count.positive?
|
114
|
-
str += format(' %<n>i usl', n: dml(usl_ins)) if apius.ledger.count.positive?
|
115
|
-
str
|
107
|
+
tabelas_cus(apius, %w[KRAKEN], %i[cust cusl])
|
116
108
|
end
|
117
109
|
|
118
110
|
# insere transacoes exchange bitcoinde novas nas tabelas det (trades), del (ledger)
|
119
111
|
#
|
120
112
|
# @return [String] linhas & tabelas afetadas
|
121
113
|
def processa_de
|
122
|
-
|
123
|
-
str += format(' %<n>i det', n: dml(det_ins)) if apide.trades.count.positive?
|
124
|
-
str += format(' %<n>i del', n: dml(del_ins)) if apide.ledger.count.positive?
|
125
|
-
str
|
114
|
+
tabelas_out(apide, %w[BITCOINDE], %i[cdet cdel])
|
126
115
|
end
|
127
116
|
|
128
117
|
# insere transacoes blockchain novas na tabela eos
|
129
118
|
#
|
130
119
|
# @return [String] linhas & tabelas afetadas
|
131
120
|
def processa_eos
|
132
|
-
|
133
|
-
str += format(' %<n>i eos ', n: dml(eost_ins)) if apigm.novax.count.positive?
|
134
|
-
str
|
121
|
+
tabelas_out(apigm, %w[EOS], %i[neost])
|
135
122
|
end
|
136
123
|
|
137
124
|
# cria job bigquery & verifica execucao
|
@@ -218,249 +205,242 @@ module Cns
|
|
218
205
|
)
|
219
206
|
end
|
220
207
|
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
%i[t i p w k].each do |typ|
|
225
|
-
novx = src.send("nov#{typ}x")
|
208
|
+
def tabelas_cus(src, str, ltb, prx = '')
|
209
|
+
ltb.each do |itm|
|
210
|
+
novx = src.send("nov#{prx}#{itm}")
|
226
211
|
next if novx.empty?
|
227
212
|
|
228
|
-
str << format(' %<n>i %<t>s', n: dml(
|
213
|
+
str << format(' %<n>i %<t>s', n: dml(insert_cus(prx, itm, novx)), t: prx + itm.to_s)
|
229
214
|
end
|
230
215
|
str.join
|
231
216
|
end
|
232
217
|
|
233
|
-
def
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
# @return [String] comando insert SQL formatado eos
|
238
|
-
def eost_ins
|
239
|
-
"insert #{BD}.neost(#{TC[:neost].join(',')}) VALUES#{apigm.novax.map { |obj| eost_val(obj) }.join(',')}"
|
240
|
-
end
|
241
|
-
|
242
|
-
# @return [String] comando insert SQL formatado det (trades)
|
243
|
-
def det_ins
|
244
|
-
"insert #{BD}.cdet(#{TC[:cdet].join(',')}) VALUES#{apide.trades.map { |obj| det_val(obj) }.join(',')}"
|
245
|
-
end
|
218
|
+
def tabelas_out(src, str, ltb, prx = '')
|
219
|
+
ltb.each do |itm|
|
220
|
+
novx = src.send("nov#{prx}#{itm}")
|
221
|
+
next if novx.empty?
|
246
222
|
|
247
|
-
|
248
|
-
|
249
|
-
|
223
|
+
str << format(' %<n>i %<t>s', n: dml(insert_out(prx, itm, novx)), t: prx + itm.to_s)
|
224
|
+
end
|
225
|
+
str.join
|
250
226
|
end
|
251
227
|
|
252
|
-
# @return [String] comando insert SQL formatado
|
253
|
-
def
|
254
|
-
"
|
228
|
+
# @return [String] comando insert SQL formatado
|
229
|
+
def insert_cus(prx, tbl, lin)
|
230
|
+
"INSERT #{BD}.#{prx}#{tbl} (#{TB[tbl].join(',')}) VALUES #{lin.map { |key, val| send("#{prx}#{tbl}_val", key, val) }.join(',')}"
|
255
231
|
end
|
256
232
|
|
257
|
-
# @return [String] comando insert SQL formatado
|
258
|
-
def
|
259
|
-
"
|
233
|
+
# @return [String] comando insert SQL formatado
|
234
|
+
def insert_out(prx, tbl, lin)
|
235
|
+
"INSERT #{BD}.#{prx}#{tbl} (#{TB[tbl].join(',')}) VALUES #{lin.map { |itm| send("#{prx}#{tbl}_val", itm) }.join(',')}"
|
260
236
|
end
|
261
237
|
|
262
238
|
# SQL value formatting methods with improved safety
|
263
|
-
def
|
239
|
+
def fqt(value)
|
264
240
|
return 'null' if value.nil? || value.empty?
|
265
241
|
|
266
|
-
"'#{value
|
242
|
+
"'#{value}'"
|
267
243
|
end
|
268
244
|
|
269
|
-
def
|
245
|
+
def fnm(value)
|
246
|
+
return 'null' if value.nil?
|
247
|
+
|
270
248
|
"CAST('#{value}' AS NUMERIC)"
|
271
249
|
end
|
272
250
|
|
273
|
-
def
|
251
|
+
def fin(value)
|
252
|
+
return '0' if value.nil?
|
253
|
+
|
274
254
|
Integer(value).to_s
|
275
255
|
rescue StandardError
|
276
256
|
'null'
|
277
257
|
end
|
278
258
|
|
259
|
+
def ftm(sec)
|
260
|
+
"PARSE_DATETIME('%s', '#{String(sec.round)}')"
|
261
|
+
end
|
262
|
+
|
263
|
+
def fts(value)
|
264
|
+
"DATETIME(TIMESTAMP('#{value}'))"
|
265
|
+
end
|
266
|
+
|
279
267
|
# @param [Hash] htx transacao norml etherscan
|
280
268
|
# @return [String] valores formatados netht (norml parte1)
|
281
269
|
def netht_val(htx)
|
282
|
-
txr = htx[:txreceipt_status]
|
283
|
-
inp = htx[:input]
|
284
|
-
cta = htx[:contractAddress]
|
285
270
|
"(#{[
|
286
|
-
|
287
|
-
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
|
295
|
-
|
296
|
-
|
297
|
-
|
298
|
-
|
299
|
-
|
300
|
-
|
301
|
-
|
302
|
-
|
303
|
-
|
271
|
+
fin(htx[:blockNumber]),
|
272
|
+
fin(htx[:timeStamp]),
|
273
|
+
fqt(htx[:hash]),
|
274
|
+
fin(htx[:nonce]),
|
275
|
+
fqt(htx[:blockHash]),
|
276
|
+
fin(htx[:transactionIndex]),
|
277
|
+
fqt(htx[:from]),
|
278
|
+
fqt(htx[:to]),
|
279
|
+
fqt(htx[:iax]),
|
280
|
+
fnm(htx[:value]),
|
281
|
+
fnm(htx[:gas]),
|
282
|
+
fnm(htx[:gasPrice]),
|
283
|
+
fnm(htx[:gasUsed]),
|
284
|
+
fin(htx[:isError]),
|
285
|
+
fin(htx[:txreceipt_status]),
|
286
|
+
fqt(htx[:input]),
|
287
|
+
fqt(htx[:contractAddress]),
|
288
|
+
fin(ops.dig(:h, htx[:hash]))
|
304
289
|
].join(',')})"
|
305
290
|
end
|
306
291
|
|
307
292
|
# @param [Hash] htx transacao internas etherscan
|
308
293
|
# @return [String] valores formatados nethi (internas parte1)
|
309
294
|
def nethi_val(htx)
|
310
|
-
cta = htx[:contractAddress]
|
311
|
-
inp = htx[:input]
|
312
|
-
tid = htx[:traceId]
|
313
|
-
txr = htx[:errCode]
|
314
295
|
"(#{[
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
|
321
|
-
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
|
329
|
-
|
296
|
+
fin(htx[:blockNumber]),
|
297
|
+
fin(htx[:timeStamp]),
|
298
|
+
fqt(htx[:hash]),
|
299
|
+
fqt(htx[:from]),
|
300
|
+
fqt(htx[:to]),
|
301
|
+
fqt(htx[:iax]),
|
302
|
+
fnm(htx[:value]),
|
303
|
+
fqt(htx[:contractAddress]),
|
304
|
+
fqt(htx[:input]),
|
305
|
+
fqt(htx[:type]),
|
306
|
+
fnm(htx[:gas]),
|
307
|
+
fnm(htx[:gasUsed]),
|
308
|
+
fqt(htx[:traceId]),
|
309
|
+
fin(htx[:isError]),
|
310
|
+
fin(htx[:errCode]),
|
311
|
+
fin(ops.dig(:h, htx[:hash]))
|
330
312
|
].join(',')})"
|
331
313
|
end
|
332
314
|
|
333
315
|
# @param [Hash] htx transacao block etherscan
|
334
316
|
# @return [String] valores formatados nethi (block parte1)
|
335
317
|
def nethp_val(htx)
|
336
|
-
"(#{[
|
318
|
+
"(#{[fin(htx[:blockNumber]), fin(htx[:timeStamp]), fnm(htx[:blockReward]), fqt(htx[:iax]), fin(ops.dig(:h, htx[:blockNumber]))].join(',')})"
|
337
319
|
end
|
338
320
|
|
339
321
|
# @param [Hash] htx transacao withdrawals etherscan
|
340
322
|
# @return [String] valores formatados nethi (withdrawals parte1)
|
341
323
|
def nethw_val(htx)
|
342
324
|
"(#{[
|
343
|
-
|
344
|
-
|
345
|
-
|
346
|
-
|
347
|
-
|
348
|
-
|
325
|
+
fin(htx[:withdrawalIndex]),
|
326
|
+
fin(htx[:validatorIndex]),
|
327
|
+
fqt(htx[:address]),
|
328
|
+
fnm(htx[:amount]),
|
329
|
+
fin(htx[:blockNumber]),
|
330
|
+
fin(htx[:timestamp]),
|
331
|
+
fin(ops.dig(:h, htx[:withdrawalIndex]))
|
349
332
|
].join(',')})"
|
350
333
|
end
|
351
334
|
|
352
335
|
# @param [Hash] hkx token event etherscan
|
353
336
|
# @return [String] valores formatados nethk (token parte1)
|
354
337
|
def nethk_val(htx)
|
355
|
-
inp = htx[:input]
|
356
|
-
cta = htx[:contractAddress]
|
357
338
|
"(#{[
|
358
|
-
|
359
|
-
|
360
|
-
|
361
|
-
|
362
|
-
|
363
|
-
|
364
|
-
|
365
|
-
|
366
|
-
|
367
|
-
|
368
|
-
|
369
|
-
|
370
|
-
|
371
|
-
|
372
|
-
|
373
|
-
|
374
|
-
|
375
|
-
|
376
|
-
|
339
|
+
fin(htx[:blockNumber]),
|
340
|
+
fin(htx[:timeStamp]),
|
341
|
+
fqt(htx[:hash]),
|
342
|
+
fin(htx[:nonce]),
|
343
|
+
fqt(htx[:blockHash]),
|
344
|
+
fin(htx[:transactionIndex]),
|
345
|
+
fqt(htx[:from]),
|
346
|
+
fqt(htx[:to]),
|
347
|
+
fqt(htx[:iax]),
|
348
|
+
fnm(htx[:value]),
|
349
|
+
fqt(htx[:tokenName]),
|
350
|
+
fqt(htx[:tokenSymbol]),
|
351
|
+
fin(htx[:tokenDecimal]),
|
352
|
+
fnm(htx[:gas]),
|
353
|
+
fnm(htx[:gasPrice]),
|
354
|
+
fnm(htx[:gasUsed]),
|
355
|
+
fqt(htx[:input]),
|
356
|
+
fqt(htx[:contractAddress]),
|
357
|
+
fin(ops.dig(:h, htx[:hash]))
|
377
358
|
].join(',')})"
|
378
359
|
end
|
379
360
|
|
380
361
|
# @example (see Apibc#ledger_gm)
|
381
362
|
# @param [Hash] hlx ledger greymass
|
382
363
|
# @return [String] valores formatados para insert eos (parte1)
|
383
|
-
def
|
384
|
-
act =
|
364
|
+
def neost_val(htx)
|
365
|
+
act = htx[:action_trace][:act]
|
385
366
|
dat = act[:data]
|
386
367
|
qtd = dat[:quantity].to_s
|
387
368
|
str = dat[:memo].inspect
|
388
|
-
"(#{
|
389
|
-
|
390
|
-
|
391
|
-
|
392
|
-
|
393
|
-
|
394
|
-
|
395
|
-
|
396
|
-
|
397
|
-
|
398
|
-
|
399
|
-
|
369
|
+
"(#{[
|
370
|
+
fin(htx[:global_action_seq]),
|
371
|
+
fin(htx[:account_action_seq]),
|
372
|
+
fin(htx[:block_num]),
|
373
|
+
fts(htx[:block_time]),
|
374
|
+
fqt(act[:account]),
|
375
|
+
fqt(act[:name]),
|
376
|
+
fqt(dat[:from]),
|
377
|
+
fqt(dat[:to]),
|
378
|
+
fqt(htx[:iax]),
|
379
|
+
qtd.to_d,
|
380
|
+
fqt(qtd[/[[:upper:]]+/]),
|
381
|
+
fqt(str),
|
382
|
+
fin(ops.dig(:h, htx[:itx]))
|
383
|
+
].join(',')})"
|
400
384
|
end
|
401
385
|
|
402
386
|
# @param [Hash] htx trade bitcoinde
|
403
387
|
# @return [String] valores formatados det (trades parte1)
|
404
|
-
def
|
405
|
-
"(
|
406
|
-
|
407
|
-
|
408
|
-
|
409
|
-
|
410
|
-
|
411
|
-
|
412
|
-
|
413
|
-
|
414
|
-
|
388
|
+
def cdet_val(htx)
|
389
|
+
"(#{[
|
390
|
+
fqt(htx[:trade_id]),
|
391
|
+
fts(htx[:successfully_finished_at]),
|
392
|
+
fqt(htx[:type]),
|
393
|
+
fqt(htx[:trading_partner_information][:username]),
|
394
|
+
fnm(htx[:type] == 'buy' ? htx[:amount_currency_to_trade_after_fee] : "-#{htx[:amount_currency_to_trade]}"),
|
395
|
+
fnm(htx[:volume_currency_to_pay_after_fee]),
|
396
|
+
fts(htx[:trade_marked_as_paid_at]),
|
397
|
+
fin(ops.dig(:h, htx[:trade_id]))
|
398
|
+
].join(',')})"
|
415
399
|
end
|
416
400
|
|
417
401
|
# @param [Hash] hlx ledger (deposits + withdrawals) bitcoinde
|
418
402
|
# @return [String] valores formatados del (ledger)
|
419
|
-
def
|
420
|
-
tip =
|
421
|
-
|
422
|
-
|
423
|
-
|
424
|
-
|
425
|
-
|
426
|
-
|
427
|
-
|
403
|
+
def cdel_val(htx)
|
404
|
+
tip = htx[:tp]
|
405
|
+
qtd = htx[:qt]
|
406
|
+
"(#{[
|
407
|
+
fin(htx[:txid]),
|
408
|
+
fts(htx[:time].iso8601),
|
409
|
+
fqt(tip),
|
410
|
+
fqt(htx[:add]),
|
411
|
+
fqt(htx[:moe]),
|
412
|
+
fnm(tip == 'withdrawal' ? "-#{qtd}" : qtd),
|
413
|
+
fnm(htx[:fee])
|
414
|
+
].join(',')})"
|
428
415
|
end
|
429
416
|
|
430
417
|
# @param [String] idx identificador transacao
|
431
418
|
# @param [Hash] htx trade kraken
|
432
419
|
# @return [String] valores formatados ust (trades parte1)
|
433
|
-
def
|
434
|
-
|
435
|
-
|
436
|
-
|
437
|
-
|
438
|
-
|
439
|
-
|
440
|
-
|
441
|
-
|
442
|
-
|
443
|
-
|
444
|
-
|
445
|
-
|
446
|
-
|
447
|
-
|
448
|
-
|
420
|
+
def cust_val(idx, htx)
|
421
|
+
"(#{[
|
422
|
+
fqt(idx),
|
423
|
+
fqt(htx[:ordertxid]),
|
424
|
+
fqt(htx[:pair]),
|
425
|
+
ftm(htx[:time]),
|
426
|
+
fqt(htx[:type]),
|
427
|
+
fqt(htx[:ordertype]),
|
428
|
+
fnm(htx[:price]),
|
429
|
+
fnm(htx[:cost]),
|
430
|
+
fnm(htx[:fee]),
|
431
|
+
fnm(htx[:vol]),
|
432
|
+
fnm(htx[:margin]),
|
433
|
+
fqt(htx[:misc]),
|
434
|
+
fqt(apius.novcusl.select { |_, obj| obj[:refid] == idx.to_s }.keys.join(',')),
|
435
|
+
fin(ops.dig(:h, idx))
|
436
|
+
].join(',')})"
|
449
437
|
end
|
450
438
|
|
451
439
|
# @param idx (see ust_val)
|
452
440
|
# @param [Hash] hlx ledger kraken
|
453
441
|
# @return [String] valores formatados usl (ledger)
|
454
|
-
def
|
455
|
-
|
456
|
-
"('#{idx}'," \
|
457
|
-
"'#{hlx[:refid]}'," \
|
458
|
-
"PARSE_DATETIME('%s', '#{String(hlx[:time].round)}')," \
|
459
|
-
"'#{hlx[:type]}'," \
|
460
|
-
"#{acl.empty? ? 'null' : "'#{acl}'"}," \
|
461
|
-
"'#{hlx[:asset]}'," \
|
462
|
-
"cast(#{hlx[:amount]} as numeric)," \
|
463
|
-
"cast(#{hlx[:fee]} as numeric))"
|
442
|
+
def cusl_val(idx, hlx)
|
443
|
+
"(#{[fqt(idx), fqt(hlx[:refid]), ftm(hlx[:time]), fqt(hlx[:type]), fqt(hlx[:aclass]), fqt(hlx[:asset]), fnm(hlx[:amount]), fnm(hlx[:fee])].join(',')})"
|
464
444
|
end
|
465
445
|
end
|
466
446
|
end
|
data/lib/cns/bitcoinde.rb
CHANGED
@@ -22,17 +22,17 @@ module Cns
|
|
22
22
|
def initialize(dad, pop)
|
23
23
|
@api = Apice.new
|
24
24
|
@bqd = dad
|
25
|
-
@ops = pop
|
25
|
+
@ops = pop.transform_keys(&:to_sym)
|
26
26
|
end
|
27
27
|
|
28
28
|
# @return [Array<Hash>] lista trades bitcoinde novos
|
29
|
-
def
|
30
|
-
@
|
29
|
+
def novcdet
|
30
|
+
@novcdet ||= exd[:tt].select { |obj| kyt.include?(obj[:trade_id]) }
|
31
31
|
end
|
32
32
|
|
33
33
|
# @return [Array<Hash>] lista ledger (deposits + withdrawals) bitcoinde novos
|
34
|
-
def
|
35
|
-
@
|
34
|
+
def novcdel
|
35
|
+
@novcdel ||= exd[:tl].select { |obj| kyl.include?(obj[:txid]) }
|
36
36
|
end
|
37
37
|
|
38
38
|
# @return [String] texto saldos & transacoes & ajuste dias
|
@@ -43,7 +43,7 @@ module Cns
|
|
43
43
|
|
44
44
|
mostra_trades
|
45
45
|
mostra_ledger
|
46
|
-
return if
|
46
|
+
return if novcdet.empty?
|
47
47
|
|
48
48
|
puts("\nstring ajuste dias dos trades\n-h=#{kyt.map { |obj| "#{obj}:0" }.join(' ')}")
|
49
49
|
end
|
@@ -120,20 +120,18 @@ module Cns
|
|
120
120
|
|
121
121
|
# @return [String] texto transacoes trades
|
122
122
|
def mostra_trades
|
123
|
-
return unless ops[:v] && !
|
123
|
+
return unless ops[:v] && !novcdet.empty?
|
124
124
|
|
125
125
|
puts("\ntrades data hora dt criacao tipo par qtd eur")
|
126
|
-
|
127
|
-
.sort { |ant, prx| Time.parse(prx[:successfully_finished_at]) <=> Time.parse(ant[:successfully_finished_at]) }
|
128
|
-
.each { |obj| puts(formata_trades(obj)) }
|
126
|
+
novcdet.sort { |ant, prx| Time.parse(prx[:successfully_finished_at]) <=> Time.parse(ant[:successfully_finished_at]) }.each { |obj| puts(formata_trades(obj)) }
|
129
127
|
end
|
130
128
|
|
131
129
|
# @return [String] texto transacoes ledger
|
132
130
|
def mostra_ledger
|
133
|
-
return unless ops[:v] && !
|
131
|
+
return unless ops[:v] && !novcdel.empty?
|
134
132
|
|
135
133
|
puts("\nledger data hora tipo moe quantidade custo")
|
136
|
-
|
134
|
+
novcdel.sort { |ant, prx| prx[:time] <=> ant[:time] }.each { |obj| puts(formata_ledger(obj)) }
|
137
135
|
end
|
138
136
|
end
|
139
137
|
end
|
data/lib/cns/etherscan.rb
CHANGED
@@ -24,32 +24,32 @@ module Cns
|
|
24
24
|
def initialize(dad, pop)
|
25
25
|
@api = Apibc.new
|
26
26
|
@bqd = dad
|
27
|
-
@ops = pop
|
27
|
+
@ops = pop.transform_keys(&:to_sym)
|
28
28
|
end
|
29
29
|
|
30
30
|
# @return [Array<Hash>] lista transacoes normais novas
|
31
|
-
def
|
32
|
-
@
|
31
|
+
def novnetht
|
32
|
+
@novnetht ||= bcd.map { |obc| obc[:tx].select { |obj| idt.include?(obj[:itx]) } }.flatten.uniq { |itm| itm[:itx] }
|
33
33
|
end
|
34
34
|
|
35
35
|
# @return [Array<Hash>] lista transacoes internas novas
|
36
|
-
def
|
37
|
-
@
|
36
|
+
def novnethi
|
37
|
+
@novnethi ||= bcd.map { |obc| obc[:ix].select { |obj| idi.include?(obj[:itx]) } }.flatten.uniq { |itm| itm[:itx] }
|
38
38
|
end
|
39
39
|
|
40
40
|
# @return [Array<Hash>] lista transacoes block novas
|
41
|
-
def
|
42
|
-
@
|
41
|
+
def novnethp
|
42
|
+
@novnethp ||= bcd.map { |obc| obc[:px].select { |obj| idp.include?(obj[:itx]) } }.flatten.uniq { |itm| itm[:itx] }
|
43
43
|
end
|
44
44
|
|
45
45
|
# @return [Array<Hash>] lista transacoes withdrawals novas
|
46
|
-
def
|
47
|
-
@
|
46
|
+
def novnethw
|
47
|
+
@novnethw ||= bcd.map { |obc| obc[:wx].select { |obj| idw.include?(obj[:itx]) } }.flatten.uniq { |itm| itm[:itx] }
|
48
48
|
end
|
49
49
|
|
50
50
|
# @return [Array<Hash>] lista transacoes token novas
|
51
|
-
def
|
52
|
-
@
|
51
|
+
def novnethk
|
52
|
+
@novnethk ||= bcd.map { |obc| obc[:kx].select { |obj| idk.include?(obj[:itx]) } }.flatten.uniq { |itm| itm[:itx] }
|
53
53
|
end
|
54
54
|
|
55
55
|
# @return [Array<String>] lista dos meus enderecos
|
@@ -164,27 +164,27 @@ module Cns
|
|
164
164
|
# dt: Time.at(Integer(htx[:timeStamp])),
|
165
165
|
# @return [Array<Hash>] lista ordenada transacoes normais novas
|
166
166
|
def sortx
|
167
|
-
|
167
|
+
novnetht.sort { |ant, prx| ant[:srx] <=> prx[:srx] }
|
168
168
|
end
|
169
169
|
|
170
170
|
# @return [Array<Hash>] lista ordenada transacoes internas novas
|
171
171
|
def sorix
|
172
|
-
|
172
|
+
novnethi.sort { |ant, prx| ant[:srx] <=> prx[:srx] }
|
173
173
|
end
|
174
174
|
|
175
175
|
# @return [Array<Hash>] lista ordenada transacoes block novas
|
176
176
|
def sorpx
|
177
|
-
|
177
|
+
novnethp.sort { |ant, prx| ant[:itx] <=> prx[:itx] }
|
178
178
|
end
|
179
179
|
|
180
180
|
# @return [Array<Hash>] lista ordenada transacoes withdrawals novas
|
181
181
|
def sorwx
|
182
|
-
|
182
|
+
novnethw.sort { |ant, prx| ant[:itx] <=> prx[:itx] }
|
183
183
|
end
|
184
184
|
|
185
185
|
# @return [Array<Hash>] lista ordenada transacoes token novas
|
186
186
|
def sorkx
|
187
|
-
|
187
|
+
novnethk.sort { |ant, prx| ant[:srx] <=> prx[:srx] }
|
188
188
|
end
|
189
189
|
|
190
190
|
# @return [String] texto carteiras & transacoes & ajuste dias
|
@@ -193,11 +193,11 @@ module Cns
|
|
193
193
|
|
194
194
|
puts("\nid address etherscan bigquery")
|
195
195
|
dados.each { |obj| puts(formata_carteira_simples(obj)) }
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
196
|
+
mostra_tx_norml
|
197
|
+
mostra_tx_inter
|
198
|
+
mostra_tx_block
|
199
|
+
mostra_tx_token
|
200
|
+
mostra_tx_withw
|
201
201
|
mostra_configuracao_ajuste_dias
|
202
202
|
end
|
203
203
|
|
@@ -207,11 +207,11 @@ module Cns
|
|
207
207
|
|
208
208
|
puts("\nid address etherscan tn ti tb tk tw bigquery tn ti tb tk tw")
|
209
209
|
dados.each { |obj| puts(formata_carteira(obj)) }
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
210
|
+
mostra_tx_norml
|
211
|
+
mostra_tx_inter
|
212
|
+
mostra_tx_block
|
213
|
+
mostra_tx_token
|
214
|
+
mostra_tx_withw
|
215
215
|
mostra_configuracao_ajuste_dias
|
216
216
|
end
|
217
217
|
|
@@ -297,27 +297,42 @@ module Cns
|
|
297
297
|
inf = max % 2
|
298
298
|
hid = bqd[:wb].select { |obj| obj[:ax] == add }.first
|
299
299
|
ndd = hid ? "#{hid[:id]}-#{add}" : add
|
300
|
-
"#{ndd[0, ini
|
300
|
+
"#{ndd[0, ini]}..#{ndd[-inf - ini..]}"
|
301
301
|
end
|
302
302
|
|
303
303
|
# @example (see Apibc#norml_es)
|
304
304
|
# @param [Hash] htx transacao normal etherscan
|
305
305
|
# @return [String] texto formatado transacao normal etherscan
|
306
|
-
def
|
306
|
+
def formata_tx_ti(htx)
|
307
307
|
format(
|
308
|
-
'%<
|
309
|
-
|
310
|
-
fr: formata_enderec2(htx[:from],
|
311
|
-
to: formata_enderec2(htx[:to],
|
308
|
+
'%<hx>-29.29s %<fr>-15.15s %<to>-15.15s %<dt>10.10s %<vl>7.3f',
|
309
|
+
hx: formata_enderec1(htx[:hash], 29),
|
310
|
+
fr: formata_enderec2(htx[:from], 15),
|
311
|
+
to: formata_enderec2(htx[:to], 15),
|
312
312
|
dt: Time.at(Integer(htx[:timeStamp])),
|
313
313
|
vl: (htx[:value].to_d / (10**18)).round(10)
|
314
314
|
)
|
315
315
|
end
|
316
316
|
|
317
|
+
# @example (see Apibc#token_es)
|
318
|
+
# @param [Hash] hkx transacao token etherscan
|
319
|
+
# @return [String] texto formatado transacao token etherscan
|
320
|
+
def formata_tx_token(hkx)
|
321
|
+
format(
|
322
|
+
'%<hx>-23.23s %<fr>-15.15s %<to>-15.15s %<dt>10.10s %<vl>7.3f %<sy>-5.5s',
|
323
|
+
hx: formata_enderec1(hkx[:hash], 23),
|
324
|
+
fr: formata_enderec2(hkx[:from], 15),
|
325
|
+
to: formata_enderec2(hkx[:to], 15),
|
326
|
+
dt: Time.at(Integer(hkx[:timeStamp])),
|
327
|
+
vl: (hkx[:value].to_d / (10**18)).round(10),
|
328
|
+
sy: hkx[:tokenSymbol]
|
329
|
+
)
|
330
|
+
end
|
331
|
+
|
317
332
|
# @example (see Apibc#block_es)
|
318
333
|
# @param [Hash] htx transacao block etherscan
|
319
334
|
# @return [String] texto formatado transacao block etherscan
|
320
|
-
def
|
335
|
+
def formata_tx_block(htx)
|
321
336
|
format(
|
322
337
|
'%<bn>9i %<fr>-41.41s %<dt>10.10s %<vl>17.6f',
|
323
338
|
bn: htx[:blockNumber],
|
@@ -327,78 +342,66 @@ module Cns
|
|
327
342
|
)
|
328
343
|
end
|
329
344
|
|
330
|
-
# @example (see Apibc#token_es)
|
331
|
-
# @param [Hash] hkx transacao token etherscan
|
332
|
-
# @return [String] texto formatado transacao token etherscan
|
333
|
-
def formata_transacao_token(hkx)
|
334
|
-
format(
|
335
|
-
'%<bn>9i %<fr>-20.20s %<to>-20.20s %<dt>10.10s %<vl>11.3f %<sy>-5.5s',
|
336
|
-
bn: hkx[:blockNumber],
|
337
|
-
fr: formata_enderec2(hkx[:from], 20),
|
338
|
-
to: formata_enderec2(hkx[:to], 20),
|
339
|
-
dt: Time.at(Integer(hkx[:timeStamp])),
|
340
|
-
vl: (hkx[:value].to_d / (10**18)).round(10),
|
341
|
-
sy: hkx[:tokenSymbol]
|
342
|
-
)
|
343
|
-
end
|
344
|
-
|
345
345
|
# @example (see Apibc#block_es)
|
346
346
|
# @param [Hash] htx transacao withdrawals etherscan
|
347
347
|
# @return [String] texto formatado transacao withdrawals etherscan
|
348
|
-
def
|
348
|
+
def formata_tx_withw(htx)
|
349
349
|
format(
|
350
|
-
'%<
|
351
|
-
vi: htx[:validatorIndex],
|
350
|
+
'%<bn>10i %<vi>9i %<dt>10.10s %<vl>10.6f',
|
352
351
|
bn: htx[:withdrawalIndex],
|
352
|
+
vi: htx[:validatorIndex],
|
353
353
|
dt: Time.at(Integer(htx[:timestamp])),
|
354
354
|
vl: (htx[:amount].to_d / (10**9)).round(10)
|
355
355
|
)
|
356
356
|
end
|
357
357
|
|
358
358
|
# @return [String] texto transacoes normais
|
359
|
-
def
|
360
|
-
return unless ops[:v] &&
|
359
|
+
def mostra_tx_norml
|
360
|
+
return unless ops[:v] && novnetht.count.positive?
|
361
361
|
|
362
|
-
puts("\ntx normal
|
363
|
-
sortx.each { |obj| puts(
|
362
|
+
puts("\ntx normal from to data valor")
|
363
|
+
sortx.each { |obj| puts(formata_tx_ti(obj)) }
|
364
364
|
end
|
365
365
|
|
366
366
|
# @return [String] texto transacoes internas
|
367
|
-
def
|
368
|
-
return unless ops[:v] &&
|
367
|
+
def mostra_tx_inter
|
368
|
+
return unless ops[:v] && novnethi.count.positive?
|
369
369
|
|
370
|
-
puts("\ntx intern
|
371
|
-
sorix.each { |obj| puts(
|
370
|
+
puts("\ntx intern from to data valor")
|
371
|
+
sorix.each { |obj| puts(formata_tx_ti(obj)) }
|
372
372
|
end
|
373
373
|
|
374
374
|
# @return [String] texto transacoes block
|
375
|
-
def
|
376
|
-
return unless ops[:v] &&
|
375
|
+
def mostra_tx_block
|
376
|
+
return unless ops[:v] && novnethp.count.positive?
|
377
377
|
|
378
378
|
puts("\ntx block address data valor")
|
379
|
-
sorpx.each { |obj| puts(
|
379
|
+
sorpx.each { |obj| puts(formata_tx_block(obj)) }
|
380
380
|
end
|
381
381
|
|
382
382
|
# @return [String] texto transacoes token
|
383
|
-
def
|
384
|
-
return unless ops[:v] &&
|
383
|
+
def mostra_tx_token
|
384
|
+
return unless ops[:v] && novnethk.count.positive?
|
385
385
|
|
386
|
-
puts("\ntx token
|
387
|
-
sorkx.each { |obj| puts(
|
386
|
+
puts("\ntx token from to data valor moeda")
|
387
|
+
sorkx.each { |obj| puts(formata_tx_token(obj)) }
|
388
388
|
end
|
389
389
|
|
390
390
|
# @return [String] texto transacoes withdrawals
|
391
|
-
def
|
392
|
-
return unless ops[:v] &&
|
391
|
+
def mostra_tx_withw
|
392
|
+
return unless ops[:v] && novnethw.count.positive?
|
393
393
|
|
394
|
-
puts("\
|
395
|
-
sorwx.each { |obj| puts(
|
394
|
+
puts("\nwithdrawal validator data valor")
|
395
|
+
sorwx.each { |obj| puts(formata_tx_withw(obj)) }
|
396
396
|
end
|
397
397
|
|
398
398
|
# @return [String] texto configuracao ajuste dias das transacoes (normais & token)
|
399
399
|
def mostra_configuracao_ajuste_dias
|
400
|
-
puts("\
|
401
|
-
puts("\
|
400
|
+
puts("\najuste dias transacoes normais \n-h=#{sortx.map { |obj| "#{obj[:hash]}:0" }.join(' ')}") if novnetht.count.positive?
|
401
|
+
puts("\najuste dias transacoes internas \n-h=#{sorix.map { |obj| "#{obj[:hash]}:0" }.join(' ')}") if novnethi.count.positive?
|
402
|
+
puts("\najuste dias transacoes block \n-h=#{sorpx.map { |obj| "#{obj[:blockNumber]}:0" }.join(' ')}") if novnethp.count.positive?
|
403
|
+
puts("\najuste dias transacoes withdrawals\n-h=#{sorwx.map { |obj| "#{obj[:withdrawalIndex]}:0" }.join(' ')}") if novnethw.count.positive?
|
404
|
+
puts("\najuste dias transacoes token \n-h=#{sorkx.map { |obj| "#{obj[:hash]}:0" }.join(' ')}") if novnethk.count.positive?
|
402
405
|
end
|
403
406
|
end
|
404
407
|
end
|
data/lib/cns/greymass.rb
CHANGED
@@ -22,12 +22,12 @@ module Cns
|
|
22
22
|
def initialize(dad, pop)
|
23
23
|
@api = Apibc.new
|
24
24
|
@bqd = dad
|
25
|
-
@ops = pop
|
25
|
+
@ops = pop.transform_keys(&:to_sym)
|
26
26
|
end
|
27
27
|
|
28
28
|
# @return [Array<Hash>] lista transacoes novas
|
29
|
-
def
|
30
|
-
@
|
29
|
+
def novneost
|
30
|
+
@novneost ||= bcd.map { |obc| obc[:tx].select { |obj| idt.include?(obj[:itx]) } }.flatten
|
31
31
|
end
|
32
32
|
|
33
33
|
# @return [Array<String>] lista dos meus enderecos
|
@@ -98,11 +98,6 @@ module Cns
|
|
98
98
|
end).map { |omp| omp.merge(itx: omp[:global_action_seq], iax: add) }
|
99
99
|
end
|
100
100
|
|
101
|
-
# @return [Array<Hash>] lista ordenada transacoes novas
|
102
|
-
def sorax
|
103
|
-
novax.sort { |ant, prx| prx[:itx] <=> ant[:itx] }
|
104
|
-
end
|
105
|
-
|
106
101
|
# @return [String] texto carteiras & transacoes & ajuste dias
|
107
102
|
def mostra_resumo
|
108
103
|
return unless dados.count.positive?
|
@@ -151,17 +146,17 @@ module Cns
|
|
151
146
|
|
152
147
|
# @return [String] texto transacoes
|
153
148
|
def mostra_transacoes_novas
|
154
|
-
return unless ops[:v] &&
|
149
|
+
return unless ops[:v] && novneost.count.positive?
|
155
150
|
|
156
151
|
puts("\nsequence num from to accao data valor moeda")
|
157
|
-
|
152
|
+
novneost.sort { |ant, prx| prx[:itx] <=> ant[:itx] }.each { |obj| puts(formata_ledger(obj)) }
|
158
153
|
end
|
159
154
|
|
160
155
|
# @return [String] texto configuracao ajuste dias das transacoes
|
161
156
|
def mostra_configuracao_ajuste_dias
|
162
|
-
return unless
|
157
|
+
return unless novneost.count.positive?
|
163
158
|
|
164
|
-
puts("\nstring ajuste dias\n-h=#{
|
159
|
+
puts("\nstring ajuste dias\n-h=#{novneost.sort { |ant, prx| prx[:itx] <=> ant[:itx] }.map { |obj| "#{obj[:itx]}:0" }.join(' ')}")
|
165
160
|
end
|
166
161
|
end
|
167
162
|
end
|
data/lib/cns/kraken.rb
CHANGED
@@ -22,17 +22,17 @@ module Cns
|
|
22
22
|
def initialize(dad, pop)
|
23
23
|
@api = Apice.new
|
24
24
|
@bqd = dad
|
25
|
-
@ops = pop
|
25
|
+
@ops = pop.transform_keys(&:to_sym)
|
26
26
|
end
|
27
27
|
|
28
28
|
# @return [Hash] trades kraken novos
|
29
|
-
def
|
30
|
-
@
|
29
|
+
def novcust
|
30
|
+
@novcust ||= exd[:kt].slice(*kyt)
|
31
31
|
end
|
32
32
|
|
33
33
|
# @return [Hash] ledger kraken novos
|
34
|
-
def
|
35
|
-
@
|
34
|
+
def novcusl
|
35
|
+
@novcusl ||= exd[:kl].slice(*kyl)
|
36
36
|
end
|
37
37
|
|
38
38
|
# @return [String] texto saldos & transacoes & ajuste dias
|
@@ -43,7 +43,7 @@ module Cns
|
|
43
43
|
|
44
44
|
mostra_trades
|
45
45
|
mostra_ledger
|
46
|
-
return if
|
46
|
+
return if novcust.empty?
|
47
47
|
|
48
48
|
puts("\nstring ajuste dias dos trades\n-h=#{kyt.map { |obj| "#{obj}:0" }.join(' ')}")
|
49
49
|
end
|
@@ -123,18 +123,18 @@ module Cns
|
|
123
123
|
|
124
124
|
# @return [String] texto transacoes trades
|
125
125
|
def mostra_trades
|
126
|
-
return unless ops[:v] &&
|
126
|
+
return unless ops[:v] && novcust.count.positive?
|
127
127
|
|
128
128
|
puts("\ntrade data hora tipo par preco volume custo")
|
129
|
-
|
129
|
+
novcust.sort { |ant, prx| prx[1][:time] <=> ant[1][:time] }.each { |key, val| puts(formata_trades(key, val)) }
|
130
130
|
end
|
131
131
|
|
132
132
|
# @return [String] texto transacoes ledger
|
133
133
|
def mostra_ledger
|
134
|
-
return unless ops[:v] &&
|
134
|
+
return unless ops[:v] && novcusl.count.positive?
|
135
135
|
|
136
136
|
puts("\nledger data hora tipo moeda quantidade custo")
|
137
|
-
|
137
|
+
novcusl.sort { |ant, prx| prx[1][:time] <=> ant[1][:time] }.each { |key, val| puts(formata_ledger(key, val)) }
|
138
138
|
end
|
139
139
|
end
|
140
140
|
end
|
data/lib/cns/version.rb
CHANGED
data/lib/cns.rb
CHANGED
@@ -58,7 +58,7 @@ module Cns
|
|
58
58
|
end
|
59
59
|
|
60
60
|
desc 'show', 'mostra resumo transacoes'
|
61
|
-
option :v, type: :boolean, default:
|
61
|
+
option :v, type: :boolean, default: true, desc: 'mostra transacoes'
|
62
62
|
option :t, type: :boolean, default: false, desc: 'mostra transacoes todas ou somente novas'
|
63
63
|
# mostra resumo transacoes
|
64
64
|
def show
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cns
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.8.
|
4
|
+
version: 0.8.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Hernâni Rodrigues Vaz
|
8
8
|
bindir: exe
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-02-
|
10
|
+
date: 2025-02-23 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: bundler
|