cns 0.8.4 → 0.8.5

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c1bca1a698024e59b3f4e8d69775a26223730139af0e7b5a717c26512046ec06
4
- data.tar.gz: a3d3734c9322ae42283f1871314c28864c536a24a23219474f3eab5ec97a90da
3
+ metadata.gz: 8f7ae1ef8366ed9cf561233f61e42435ab6d5b7202c64936310d057f99689138
4
+ data.tar.gz: 29610ef7729632d29c3d97aeccc1732cac387265de5536327734d5f4af54a265
5
5
  SHA512:
6
- metadata.gz: 0047d7643b0e402d6d059bf1f0e7b4fdc024ec8439929e5dc53fac26a5c617df4d0923fb3dca0e1188887006aaf89f78ee3770c402335ca39845fc8a098de250
7
- data.tar.gz: 9bb7c6ad69b0635f9bc09304918dba12f5d7f0a97a4b1413a020ac5b704b1694ef3b3a854260bd7706f544233c2753fa3a3d26b950fe1b0b5f0da27f3585db6f
6
+ metadata.gz: 5c28857d6b4fe429e9f8f9eb6ddfdca805343c6f5347b40624a6ea03a687bd9b90d4c257c1d7434629d404df6914f9dfa6c62883babb843cc74842643cd7d39e
7
+ data.tar.gz: b3a334a6580af627911d51037bad7065af7129239fd2ccbaf45750cba7f8c7a57b48ab28f4605a00ac9b5bbadb304a9f80e6af1519ad7d0c677d6acafb153bc3
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- cns (0.8.4)
4
+ cns (0.8.5)
5
5
  curb
6
6
  faraday
7
7
  google-cloud-bigquery
data/lib/cns/bigquery.rb CHANGED
@@ -7,8 +7,7 @@ require('bigdecimal/util')
7
7
  module Cns
8
8
  BD = 'hernanirvaz.coins'
9
9
  FO = File.expand_path("~/#{File.basename($PROGRAM_NAME)}.log")
10
- # Define table configurations at the class level
11
- TC = {
10
+ TB = {
12
11
  i: %w[blocknumber timestamp txhash axfrom axto iax value contractaddress input type gas gasused traceid iserror errcode],
13
12
  p: %w[blocknumber timestamp blockreward iax],
14
13
  w: %w[withdrawalindex validatorindex address amount blocknumber timestamp],
@@ -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
- str = "#{processa_us}, #{processa_de}, #{processa_eth}, #{processa_eos}"
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
- str = "#{processa_us}, #{processa_eth}"
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
- str = processa_eth
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
- str = processa_ethc
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
- tabelas_eth(apies, 'netb')
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
- tabelas_eth(apiesc, 'netc')
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
- str = 'KRAKEN'
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
- str = 'BITCOINDE'
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
- str = 'EOS'
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,70 +205,68 @@ module Cns
218
205
  )
219
206
  end
220
207
 
221
- # Generic ETH data processor
222
- def tabelas_eth(src, prx)
223
- str = ['ETH']
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(insert_eht(typ, novx)), t: "#{prx.chop}h#{typ}")
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 insert_eht(typ, lin)
234
- "INSERT #{BD}.neth#{typ} (#{TC[typ].join(',')}) VALUES #{lin.map { |itm| send("neth#{typ}_val", itm) }.join(',')}"
235
- end
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
- # @return [String] comando insert SQL formatado del (ledger)
248
- def del_ins
249
- "insert #{BD}.cdel(#{TC[:cdel].join(',')}) VALUES#{apide.ledger.map { |obj| del_val(obj) }.join(',')}"
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 ust (trades)
253
- def ust_ins
254
- "insert #{BD}.cust(#{TC[:cust].join(',')}) VALUES#{apius.trades.map { |key, val| ust_val(key, val) }.join(',')}"
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 usl (ledger)
258
- def usl_ins
259
- "insert #{BD}.cusl(#{TC[:cusl].join(',')}) VALUES#{apius.ledger.map { |key, val| usl_val(key, val) }.join(',')}"
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
239
  def quote(value)
264
240
  return 'null' if value.nil? || value.empty?
265
241
 
266
- "'#{value.gsub('\'', "''")}'" # Escape single quotes
242
+ "'#{value}'"
267
243
  end
268
244
 
269
245
  def numeric(value)
246
+ return 'null' if value.nil?
247
+
270
248
  "CAST('#{value}' AS NUMERIC)"
271
249
  end
272
250
 
273
251
  def integer(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 ptime(sec)
260
+ "PARSE_DATETIME('%s', '#{String(sec.round)}')"
261
+ end
262
+
263
+ def ptimestamp(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
271
  integer(htx[:blockNumber]),
287
272
  integer(htx[:timeStamp]),
@@ -297,20 +282,16 @@ module Cns
297
282
  numeric(htx[:gasPrice]),
298
283
  numeric(htx[:gasUsed]),
299
284
  integer(htx[:isError]),
300
- txr.empty? ? 'null' : integer(txr),
301
- inp.empty? ? 'null' : quote(inp),
302
- cta.empty? ? 'null' : quote(cta),
303
- integer(ops.dig(:h, htx[:blockNumber]) || 0)
285
+ integer(htx[:txreceipt_status]),
286
+ quote(htx[:input]),
287
+ quote(htx[:contractAddress]),
288
+ integer(ops.dig(:h, htx[:blockNumber]))
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
296
  integer(htx[:blockNumber]),
316
297
  integer(htx[:timeStamp]),
@@ -319,14 +300,14 @@ module Cns
319
300
  quote(htx[:to]),
320
301
  quote(htx[:iax]),
321
302
  numeric(htx[:value]),
322
- cta.empty? ? 'null' : quote(cta),
323
- inp.empty? ? 'null' : quote(inp),
303
+ quote(htx[:contractAddress]),
304
+ quote(htx[:input]),
324
305
  quote(htx[:type]),
325
306
  numeric(htx[:gas]),
326
307
  numeric(htx[:gasUsed]),
327
- tid.empty? ? 'null' : quote(tid),
308
+ quote(htx[:traceId]),
328
309
  integer(htx[:isError]),
329
- txr.empty? ? 'null' : integer(txr)
310
+ integer(htx[:errCode])
330
311
  ].join(',')})"
331
312
  end
332
313
 
@@ -352,8 +333,6 @@ module Cns
352
333
  # @param [Hash] hkx token event etherscan
353
334
  # @return [String] valores formatados nethk (token parte1)
354
335
  def nethk_val(htx)
355
- inp = htx[:input]
356
- cta = htx[:contractAddress]
357
336
  "(#{[
358
337
  integer(htx[:blockNumber]),
359
338
  integer(htx[:timeStamp]),
@@ -371,96 +350,95 @@ module Cns
371
350
  numeric(htx[:gas]),
372
351
  numeric(htx[:gasPrice]),
373
352
  numeric(htx[:gasUsed]),
374
- inp.empty? ? 'null' : quote(inp),
375
- cta.empty? ? 'null' : quote(cta),
376
- integer(ops.dig(:h, htx[:blockNumber]) || 0)
353
+ quote(htx[:input]),
354
+ quote(htx[:contractAddress]),
355
+ integer(ops.dig(:h, htx[:blockNumber]))
377
356
  ].join(',')})"
378
357
  end
379
358
 
380
359
  # @example (see Apibc#ledger_gm)
381
360
  # @param [Hash] hlx ledger greymass
382
361
  # @return [String] valores formatados para insert eos (parte1)
383
- def eost_val(hlx)
384
- act = hlx[:action_trace][:act]
362
+ def neost_val(htx)
363
+ act = htx[:action_trace][:act]
385
364
  dat = act[:data]
386
365
  qtd = dat[:quantity].to_s
387
366
  str = dat[:memo].inspect
388
- "(#{hlx[:global_action_seq]}," \
389
- "#{hlx[:account_action_seq]}," \
390
- "#{hlx[:block_num]}," \
391
- "DATETIME(TIMESTAMP('#{hlx[:block_time]}'))," \
392
- "'#{act[:account]}'," \
393
- "'#{act[:name]}'," \
394
- "'#{dat[:from]}'," \
395
- "'#{dat[:to]}'," \
396
- "'#{hlx[:iax]}'," \
397
- "#{qtd.to_d},'#{qtd[/[[:upper:]]+/]}'," \
398
- "nullif('#{str.gsub(/['"]/, '')}','nil')," \
399
- "#{ops[:h][String(hlx[:itx])] || 0})"
367
+ "(#{[
368
+ integer(htx[:global_action_seq]),
369
+ integer(htx[:account_action_seq]),
370
+ integer(htx[:block_num]),
371
+ ptimestamp(htx[:block_time]),
372
+ quote(act[:account]),
373
+ quote(act[:name]),
374
+ quote(dat[:from]),
375
+ quote(dat[:to]),
376
+ quote(htx[:iax]),
377
+ qtd.to_d,
378
+ quote(qtd[/[[:upper:]]+/]),
379
+ quote(str),
380
+ integer(ops.dig(:h, htx[:itx]))
381
+ ].join(',')})"
400
382
  end
401
383
 
402
384
  # @param [Hash] htx trade bitcoinde
403
385
  # @return [String] valores formatados det (trades parte1)
404
- def det_val(htx)
405
- "('#{htx[:trade_id]}'," \
406
- "DATETIME(TIMESTAMP('#{htx[:successfully_finished_at]}'))," \
407
- "'#{htx[:type]}'," \
408
- "'#{htx[:trading_partner_information][:username]}'," \
409
- 'cast(' \
410
- "#{htx[:type] == 'buy' ? htx[:amount_currency_to_trade_after_fee] : "-#{htx[:amount_currency_to_trade]}"} " \
411
- 'as numeric),' \
412
- "cast(#{htx[:volume_currency_to_pay_after_fee]} as numeric)," \
413
- "DATETIME(TIMESTAMP('#{htx[:trade_marked_as_paid_at]}'))," \
414
- "#{Integer(ops[:h][htx[:trade_id]] || 0)})"
386
+ def cdet_val(htx)
387
+ "(#{[
388
+ quote(htx[:trade_id]),
389
+ ptimestamp(htx[:successfully_finished_at]),
390
+ quote(htx[:type]),
391
+ quote(htx[:trading_partner_information][:username]),
392
+ numeric(htx[:type] == 'buy' ? htx[:amount_currency_to_trade_after_fee] : "-#{htx[:amount_currency_to_trade]}"),
393
+ numeric(htx[:volume_currency_to_pay_after_fee]),
394
+ ptimestamp(htx[:trade_marked_as_paid_at]),
395
+ integer(ops.dig(:h, htx[:trade_id]))
396
+ ].join(',')})"
415
397
  end
416
398
 
417
399
  # @param [Hash] hlx ledger (deposits + withdrawals) bitcoinde
418
400
  # @return [String] valores formatados del (ledger)
419
- def del_val(hlx)
420
- tip = hlx[:tp]
421
- "(#{hlx[:txid]}," \
422
- "DATETIME(TIMESTAMP('#{hlx[:time].iso8601}'))," \
423
- "'#{tip}'," \
424
- "'#{hlx[:add]}'," \
425
- "'#{hlx[:moe]}'," \
426
- "cast(#{tip == 'withdrawal' ? '-' : ''}#{hlx[:qt]} as numeric)," \
427
- "cast(#{hlx[:fee]} as numeric))"
401
+ def cdel_val(htx)
402
+ tip = htx[:tp]
403
+ qtd = htx[:qt]
404
+ "(#{[
405
+ integer(htx[:txid]),
406
+ ptimestamp(htx[:time].iso8601),
407
+ quote(tip),
408
+ quote(htx[:add]),
409
+ quote(htx[:moe]),
410
+ numeric(tip == 'withdrawal' ? "-#{qtd}" : qtd),
411
+ numeric(htx[:fee])
412
+ ].join(',')})"
428
413
  end
429
414
 
430
415
  # @param [String] idx identificador transacao
431
416
  # @param [Hash] htx trade kraken
432
417
  # @return [String] valores formatados ust (trades parte1)
433
- def ust_val(idx, htx)
434
- msc = htx[:misc].to_s
435
- "('#{idx}'," \
436
- "'#{htx[:ordertxid]}'," \
437
- "'#{htx[:pair]}'," \
438
- "PARSE_DATETIME('%s', '#{String(htx[:time].round)}')," \
439
- "'#{htx[:type]}'," \
440
- "'#{htx[:ordertype]}'," \
441
- "cast(#{htx[:price]} as numeric)," \
442
- "cast(#{htx[:cost]} as numeric)," \
443
- "cast(#{htx[:fee]} as numeric)," \
444
- "cast(#{htx[:vol]} as numeric)," \
445
- "cast(#{htx[:margin]} as numeric)," \
446
- "#{msc.empty? ? 'null' : "'#{msc}'"}," \
447
- "'#{apius.ledger.select { |_, val| val[:refid] == idx }.keys.join(',') || ''}'," \
448
- "#{Integer(ops[:h][idx] || 0)})"
418
+ def cust_val(idx, htx)
419
+ "(#{[
420
+ quote(idx),
421
+ quote(htx[:ordertxid]),
422
+ quote(htx[:pair]),
423
+ ptime(htx[:time]),
424
+ quote(htx[:type]),
425
+ quote(htx[:ordertype]),
426
+ numeric(htx[:price]),
427
+ numeric(htx[:cost]),
428
+ numeric(htx[:fee]),
429
+ numeric(htx[:vol]),
430
+ numeric(htx[:margin]),
431
+ quote(htx[:misc]),
432
+ quote(apius.novcusl.select { |_, obj| obj[:refid] == idx.to_s }.keys.join(',')),
433
+ integer(ops.dig(:h, idx))
434
+ ].join(',')})"
449
435
  end
450
436
 
451
437
  # @param idx (see ust_val)
452
438
  # @param [Hash] hlx ledger kraken
453
439
  # @return [String] valores formatados usl (ledger)
454
- def usl_val(idx, hlx)
455
- acl = hlx[:aclass].to_s
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))"
440
+ def cusl_val(idx, hlx)
441
+ "(#{[quote(idx), quote(hlx[:refid]), ptime(hlx[:time]), quote(hlx[:type]), quote(hlx[:aclass]), quote(hlx[:asset]), numeric(hlx[:amount]), numeric(hlx[:fee])].join(',')})"
464
442
  end
465
443
  end
466
444
  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 trades
30
- @trades ||= exd[:tt].select { |obj| kyt.include?(obj[:trade_id]) }
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 ledger
35
- @ledger ||= exd[:tl].select { |obj| kyl.include?(obj[:txid]) }
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 trades.empty?
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] && !trades.empty?
123
+ return unless ops[:v] && !novcdet.empty?
124
124
 
125
125
  puts("\ntrades data hora dt criacao tipo par qtd eur")
126
- trades
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] && !ledger.empty?
131
+ return unless ops[:v] && !novcdel.empty?
134
132
 
135
133
  puts("\nledger data hora tipo moe quantidade custo")
136
- ledger.sort { |ant, prx| prx[:time] <=> ant[:time] }.each { |obj| puts(formata_ledger(obj)) }
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 novtx
32
- @novtx ||= bcd.map { |obc| obc[:tx].select { |obj| idt.include?(obj[:itx]) } }.flatten.uniq { |itm| itm[:itx] }
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 novix
37
- @novix ||= bcd.map { |obc| obc[:ix].select { |obj| idi.include?(obj[:itx]) } }.flatten.uniq { |itm| itm[:itx] }
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 novpx
42
- @novpx ||= bcd.map { |obc| obc[:px].select { |obj| idp.include?(obj[:itx]) } }.flatten.uniq { |itm| itm[:itx] }
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 novwx
47
- @novwx ||= bcd.map { |obc| obc[:wx].select { |obj| idw.include?(obj[:itx]) } }.flatten.uniq { |itm| itm[:itx] }
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 novkx
52
- @novkx ||= bcd.map { |obc| obc[:kx].select { |obj| idk.include?(obj[:itx]) } }.flatten.uniq { |itm| itm[:itx] }
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
- novtx.sort { |ant, prx| ant[:srx] <=> prx[:srx] }
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
- novix.sort { |ant, prx| ant[:srx] <=> prx[:srx] }
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
- novpx.sort { |ant, prx| ant[:itx] <=> prx[:itx] }
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
- novwx.sort { |ant, prx| ant[:itx] <=> prx[:itx] }
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
- novkx.sort { |ant, prx| ant[:srx] <=> prx[:srx] }
187
+ novnethk.sort { |ant, prx| ant[:srx] <=> prx[:srx] }
188
188
  end
189
189
 
190
190
  # @return [String] texto carteiras & transacoes & ajuste dias
@@ -357,7 +357,7 @@ module Cns
357
357
 
358
358
  # @return [String] texto transacoes normais
359
359
  def mostra_transacao_norml
360
- return unless ops[:v] && novtx.count.positive?
360
+ return unless ops[:v] && novnetht.count.positive?
361
361
 
362
362
  puts("\ntx normal from to data valor")
363
363
  sortx.each { |obj| puts(formata_transacao_norml(obj)) }
@@ -365,7 +365,7 @@ module Cns
365
365
 
366
366
  # @return [String] texto transacoes internas
367
367
  def mostra_transacao_inter
368
- return unless ops[:v] && novix.count.positive?
368
+ return unless ops[:v] && novnethi.count.positive?
369
369
 
370
370
  puts("\ntx intern from to data valor")
371
371
  sorix.each { |obj| puts(formata_transacao_norml(obj)) }
@@ -373,7 +373,7 @@ module Cns
373
373
 
374
374
  # @return [String] texto transacoes block
375
375
  def mostra_transacao_block
376
- return unless ops[:v] && novpx.count.positive?
376
+ return unless ops[:v] && novnethp.count.positive?
377
377
 
378
378
  puts("\ntx block address data valor")
379
379
  sorpx.each { |obj| puts(formata_transacao_block(obj)) }
@@ -381,7 +381,7 @@ module Cns
381
381
 
382
382
  # @return [String] texto transacoes token
383
383
  def mostra_transacao_token
384
- return unless ops[:v] && novkx.count.positive?
384
+ return unless ops[:v] && novnethk.count.positive?
385
385
 
386
386
  puts("\ntx token from to data valor")
387
387
  sorkx.each { |obj| puts(formata_transacao_token(obj)) }
@@ -389,7 +389,7 @@ module Cns
389
389
 
390
390
  # @return [String] texto transacoes withdrawals
391
391
  def mostra_transacao_withw
392
- return unless ops[:v] && novwx.count.positive?
392
+ return unless ops[:v] && novnethw.count.positive?
393
393
 
394
394
  puts("\nvalidator withdrawal data valor")
395
395
  sorwx.each { |obj| puts(formata_transacao_withw(obj)) }
@@ -397,8 +397,8 @@ module Cns
397
397
 
398
398
  # @return [String] texto configuracao ajuste dias das transacoes (normais & token)
399
399
  def mostra_configuracao_ajuste_dias
400
- puts("\nstring ajuste dias transacoes normais\n-h=#{sortx.map { |obj| "#{obj[:blockNumber]}:0" }.join(' ')}") if novtx.count.positive?
401
- puts("\nstring ajuste dias transacoes token \n-h=#{sorkx.map { |obj| "#{obj[:blockNumber]}:0" }.join(' ')}") if novkx.count.positive?
400
+ puts("\nstring ajuste dias transacoes normais\n-h=#{sortx.map { |obj| "#{obj[:blockNumber]}:0" }.join(' ')}") if novnetht.count.positive?
401
+ puts("\nstring ajuste dias transacoes token \n-h=#{sorkx.map { |obj| "#{obj[:blockNumber]}:0" }.join(' ')}") if novnethk.count.positive?
402
402
  end
403
403
  end
404
404
  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 novax
30
- @novax ||= bcd.map { |obc| obc[:tx].select { |obj| idt.include?(obj[:itx]) } }.flatten
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] && novax.count.positive?
149
+ return unless ops[:v] && novneost.count.positive?
155
150
 
156
151
  puts("\nsequence num from to accao data valor moeda")
157
- sorax.each { |obj| puts(formata_ledger(obj)) }
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 novax.count.positive?
157
+ return unless novneost.count.positive?
163
158
 
164
- puts("\nstring ajuste dias\n-h=#{sorax.map { |obj| "#{obj[:itx]}:0" }.join(' ')}")
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 trades
30
- @trades ||= exd[:kt].slice(*kyt)
29
+ def novcust
30
+ @novcust ||= exd[:kt].slice(*kyt)
31
31
  end
32
32
 
33
33
  # @return [Hash] ledger kraken novos
34
- def ledger
35
- @ledger ||= exd[:kl].slice(*kyl)
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 trades.empty?
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] && trades.count.positive?
126
+ return unless ops[:v] && novcust.count.positive?
127
127
 
128
128
  puts("\ntrade data hora tipo par preco volume custo")
129
- trades.sort { |ant, prx| prx[1][:time] <=> ant[1][:time] }.each { |key, val| puts(formata_trades(key, val)) }
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] && ledger.count.positive?
134
+ return unless ops[:v] && novcusl.count.positive?
135
135
 
136
136
  puts("\nledger data hora tipo moeda quantidade custo")
137
- ledger.sort { |ant, prx| prx[1][:time] <=> ant[1][:time] }.each { |key, val| puts(formata_ledger(key, val)) }
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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Cns
4
- VERSION = '0.8.4'
4
+ VERSION = '0.8.5'
5
5
  end
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: false, desc: 'mostra transacoes'
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
4
+ version: 0.8.5
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-22 00:00:00.000000000 Z
10
+ date: 2025-02-23 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: bundler