cns 0.9.2 → 0.9.4

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.
data/lib/cns/greymass.rb CHANGED
@@ -7,11 +7,17 @@ module Cns
7
7
  # classe para processar transacoes do greymass
8
8
  class Greymass
9
9
  # @return [Apibc] API blockchains
10
- attr_reader :api
11
10
  # @return [Array<Hash>] todos os dados bigquery
12
- attr_reader :bqd
13
11
  # @return [Thor::CoreExt::HashWithIndifferentAccess] opcoes trabalho
14
- attr_reader :ops
12
+ attr_reader :api, :bqd, :ops
13
+
14
+ TT = {
15
+ new: :novneost,
16
+ format: :fol,
17
+ header: "\nsequence num from to accao data valor moeda",
18
+ sork: :itx,
19
+ adjk: :itx
20
+ }
15
21
 
16
22
  # @param [Hash] dad todos os dados bigquery
17
23
  # @param [Thor::CoreExt::HashWithIndifferentAccess] pop opcoes trabalho
@@ -25,29 +31,38 @@ module Cns
25
31
  @ops = pop.transform_keys(&:to_sym)
26
32
  end
27
33
 
28
- TT = {
29
- new: :novneost,
30
- format: :formata_ledger,
31
- header: "\nsequence num from to accao data valor moeda",
32
- sork: :itx,
33
- adjk: :itx
34
- }
35
-
36
34
  # @return [String] texto carteiras & transacoes & ajuste dias
37
35
  def mresumo
38
36
  return unless dados.any?
39
37
 
40
38
  puts("\naddress greymass ntx bigquery ntx")
41
- dados.each { |obj| puts(formata_carteira(obj)) }
39
+ dados.each { |o| puts(foct(o)) }
42
40
  mtransacoes_novas
43
41
  mconfiguracao_ajuste_dias
44
42
  end
45
43
 
46
44
  private
47
45
 
46
+ # mosta transacoes novas
47
+ def mtransacoes_novas
48
+ ntx = send(TT[:new])
49
+ return unless ops[:v] && ntx.any?
50
+
51
+ puts(TT[:header])
52
+ ntx.sort_by { |s| -s[TT[:sork]] }.each { |t| puts(send(TT[:format], t)) }
53
+ end
54
+
55
+ # mostra configuration text for adjusting days
56
+ def mconfiguracao_ajuste_dias
57
+ ntx = send(TT[:new])
58
+ return unless ntx.any?
59
+
60
+ puts("\nstring ajuste dias\n-h=#{ntx.sort_by { |s| -s[TT[:sork]] }.map { |t| "#{t[TT[:adjk]]}:0" }.join(' ')}")
61
+ end
62
+
48
63
  # @param [Hash] hjn dados juntos bigquery & greymass
49
64
  # @return [String] texto formatado duma carteira
50
- def formata_carteira(hjn)
65
+ def foct(hjn)
51
66
  format(
52
67
  '%<s1>-12.12s %<v1>14.4f %<n1>4i %<v2>14.4f %<n2>4i %<ok>-3s',
53
68
  s1: hjn[:ax],
@@ -59,16 +74,15 @@ module Cns
59
74
  )
60
75
  end
61
76
 
62
- # @param (see formata_carteira)
77
+ # @param (see foct)
63
78
  # @return [Boolean] carteira tem transacoes novas(sim=NOK, nao=OK)?
64
79
  def ok?(hjn)
65
80
  hjn[:bs] == hjn[:es] && hjn[:bt].count == hjn[:et].count
66
81
  end
67
82
 
68
- # @example (see Apibc#ledger_gm)
69
83
  # @param [Hash] hlx ledger greymass
70
- # @return [String] texto formatado ledger greymass
71
- def formata_ledger(hlx)
84
+ # @return [String] texto formatado
85
+ def fol(hlx)
72
86
  format(
73
87
  '%<bn>12i %<fr>-12.12s %<to>-12.12s %<ac>-10.10s %<dt>10.10s %<vl>12.4f %<sy>-6.6s',
74
88
  ac: hlx[:name],
@@ -81,102 +95,87 @@ module Cns
81
95
  )
82
96
  end
83
97
 
84
- # @return [String] Display new transactions based on verbose option
85
- def mtransacoes_novas
86
- ntx = send(TT[:new])
87
- return unless ops[:v] && ntx.any?
88
-
89
- puts(TT[:header])
90
- ntx.sort_by { |s| -s[TT[:sork]] }.each { |t| puts(send(TT[:format], t)) }
91
- end
92
-
93
- # @return [String] texto configuracao ajuste dias das transacoes
94
- def mconfiguracao_ajuste_dias
95
- ntx = send(TT[:new])
96
- return unless ntx.any?
97
-
98
- puts("\nstring ajuste dias\n-h=#{ntx.sort_by { |s| -s[TT[:sork]] }.map { |t| "#{t[TT[:adjk]]}:0" }.join(' ')}")
99
- end
100
-
101
- # @return [Array<Hash>] todos os dados greymass - saldos & transacoes
102
- def bcd
103
- @bcd ||= bqd[:wb].map { |obj| base_bc(obj) }
104
- end
105
-
106
- # @return [Array<Hash>] todos os dados juntos bigquery & greymass
107
- def dados
108
- @dados ||= bqd[:wb].map { |b| bq_bc(b, bcd.find { |g| b[:ax] == g[:ax] }) }
109
- end
110
-
98
+ # @return [Boolean] mostra todas/novas transacoes
111
99
  def show_all?
112
100
  ops[:t] || false
113
101
  end
114
102
 
115
- def bqidt
116
- @bqidt ||= show_all? ? [] : (bqd[:nt]&.map { |i| i[:itx] } || [])
103
+ # @param [String] add EOS account name
104
+ # @return [Array<BigDecimal>] lista recursos - liquido, net, spu
105
+ def peosa(add)
106
+ hac = api.account_gm(add)
107
+ htr = hac[:total_resources]
108
+ [hac[:core_liquid_balance].to_d, htr[:net_weight].to_d, htr[:cpu_weight].to_d]
117
109
  end
118
110
 
119
- # @return [Array<Integer>] lista indices transacoes novas
120
- def idt
121
- @idt ||= bcd.map { |o| o[:tx].map { |i| i[:itx] } }.flatten - bqidt
111
+ # @param add (see peosa)
112
+ # @param [Array<Hash>] ary lista transacoes
113
+ # @return [Array<Hash>] lista transacoes filtrada
114
+ def peost(add, ary)
115
+ ary.map do |t|
116
+ act = t[:action_trace][:act]
117
+ adt = act[:data]
118
+ qtd = adt[:quantity].to_s
119
+ t.merge(
120
+ name: act[:name],
121
+ from: adt[:from],
122
+ quantity: qtd.to_d,
123
+ account: act[:account],
124
+ to: adt[:to],
125
+ memo: String(adt[:memo]).gsub(/\p{C}/, ''), # remove Non-Printable Characters
126
+ moe: qtd[/[[:upper:]]+/],
127
+ itx: t[:global_action_seq],
128
+ iax: add,
129
+ block_time: Time.parse(t[:block_time])
130
+ )
131
+ end
122
132
  end
123
133
 
124
- # @example (see Apibc#account_gm)
125
134
  # @param [Hash] wbq wallet bigquery
126
135
  # @return [Hash] dados greymass - address, saldo & transacoes
127
- def base_bc(wbq)
136
+ def bsgm(wbq)
128
137
  xbq = wbq[:ax]
129
138
  {ax: xbq, sl: peosa(xbq).reduce(:+), tx: peost(xbq, api.ledger_gm(xbq))}
130
139
  end
131
140
 
132
- # @param wbq (see base_bc)
133
- # @param [Hash] hbc dados greymass - address, saldo & transacoes
141
+ # @param wbq (see bsgm)
142
+ # @param [Hash] hgm dados greymass - address, saldo & transacoes
134
143
  # @return [Hash] dados juntos bigquery & greymass
135
- def bq_bc(wbq, hbc)
144
+ def bqgm(wbq, hgm)
136
145
  xbq = wbq[:ax]
137
146
  {
138
147
  id: wbq[:id],
139
148
  ax: xbq,
140
149
  bs: wbq[:sl],
141
- bt: bqd[:nt].select { |obj| obj[:iax] == xbq },
142
- es: hbc[:sl],
143
- et: hbc[:tx]
150
+ bt: bqd[:nt].select { |o| o[:iax] == xbq },
151
+ es: hgm[:sl],
152
+ et: hgm[:tx]
144
153
  }
145
154
  end
146
155
 
147
- # @return [Array<Hash>] lista transacoes novas
148
- def novneost
149
- @novneost ||= bcd.map { |obc| obc[:tx].select { |obj| idt.include?(obj[:itx]) } }.flatten
156
+ # @return [Array<Hash>] todos os dados greymass - saldos & transacoes
157
+ def gmd
158
+ @gmd ||= bqd[:wb].map { |o| bsgm(o) }
150
159
  end
151
160
 
152
- # @return [Array<BigDecimal>] lista recursos - liquido, net, spu
153
- def peosa(add)
154
- hac = api.account_gm(add)
155
- htr = hac[:total_resources]
156
- [hac[:core_liquid_balance].to_d, htr[:net_weight].to_d, htr[:cpu_weight].to_d]
161
+ # @return [Array<Hash>] todos os dados juntos bigquery & greymass
162
+ def dados
163
+ @dados ||= bqd[:wb].map { |b| bqgm(b, gmd.find { |g| b[:ax] == g[:ax] }) }
157
164
  end
158
165
 
159
- # @param add (see Apibc#account_gm)
160
- # @param [Array<Hash>] ary lista transacoes
161
- # @return [Array<Hash>] lista transacoes filtrada
162
- def peost(add, ary)
163
- ary.map do |omp|
164
- act = omp[:action_trace][:act]
165
- adt = act[:data]
166
- qtd = adt[:quantity].to_s
167
- omp.merge(
168
- name: act[:name],
169
- from: adt[:from],
170
- quantity: qtd.to_d,
171
- account: act[:account],
172
- to: adt[:to],
173
- memo: String(adt[:memo]).gsub(/\p{C}/, ''), # remove Non-Printable Characters
174
- moe: qtd[/[[:upper:]]+/],
175
- itx: omp[:global_action_seq],
176
- iax: add,
177
- block_time: Time.parse(omp[:block_time])
178
- )
179
- end
166
+ # @return [Array<Integer>] indices transacoes bigquery
167
+ def bqidt
168
+ @bqidt ||= show_all? ? [] : bqd[:nt].map { |i| i[:itx] }
169
+ end
170
+
171
+ # @return [Array<Integer>] indices transacoes novas (greymass - bigquery)
172
+ def idt
173
+ @idt ||= gmd.map { |o| o[:tx].map { |i| i[:itx] } }.flatten - bqidt
174
+ end
175
+
176
+ # @return [Array<Hash>] lista transacoes novas
177
+ def novneost
178
+ @novneost ||= gmd.map { |t| t[:tx].select { |o| idt.include?(o[:itx]) } }.flatten.uniq { |i| i[:itx] }
180
179
  end
181
180
  end
182
181
  end
data/lib/cns/kraken.rb CHANGED
@@ -7,11 +7,9 @@ module Cns
7
7
  # classe para processar transacoes trades/ledger do kraken
8
8
  class Kraken
9
9
  # @return [Apius] API kraken
10
- attr_reader :api
11
10
  # @return [Array<Hash>] todos os dados bigquery
12
- attr_reader :bqd
13
11
  # @return [Thor::CoreExt::HashWithIndifferentAccess] opcoes trabalho
14
- attr_reader :ops
12
+ attr_reader :api, :bqd, :ops
15
13
 
16
14
  # @param [Hash] dad todos os dados bigquery
17
15
  # @param [Thor::CoreExt::HashWithIndifferentAccess] pop opcoes trabalho
@@ -25,15 +23,10 @@ module Cns
25
23
  @ops = pop.transform_keys(&:to_sym)
26
24
  end
27
25
 
28
- # @return [Hash] dados exchange kraken - saldos & transacoes trades e ledger
29
- def exd
30
- @exd ||= {sl: pusa(api.account_us), kt: pust(api.trades_us), kl: pusl(api.ledger_us)}
31
- end
32
-
33
26
  # @return [String] texto saldos & transacoes & ajuste dias
34
27
  def mresumo
35
28
  puts("\nKRAKEN\ntipo kraken bigquery")
36
- exd[:sl].sort.each { |key, val| puts(formata_saldos(key, val)) }
29
+ usd[:sl].sort.each { |key, val| puts(fos(key, val)) }
37
30
  mtotais
38
31
 
39
32
  mtrades
@@ -43,45 +36,44 @@ module Cns
43
36
  puts("\nstring ajuste dias dos trades\n-h=#{novcust.sort_by { |_, v| -v[:srx] }.map { |k, _v| "#{k}:0" }.join(' ')}")
44
37
  end
45
38
 
46
- private
47
-
48
- def show_all?
49
- ops[:t] || false
39
+ # @return [Hash] ledgers exchange kraken
40
+ def uskl
41
+ usd[:kl]
50
42
  end
51
43
 
52
- def bqkyt
53
- @bqkyt ||= show_all? ? [] : (bqd[:nt]&.map { |t| t[:txid].to_sym } || [])
54
- end
44
+ private
55
45
 
56
- def bqkyl
57
- @bqkyl ||= show_all? ? [] : (bqd[:nl]&.map { |l| l[:txid].to_sym } || [])
58
- end
46
+ # mosta contadores transacoes
47
+ def mtotais
48
+ vkt = usd[:kt].count
49
+ vnt = bqd[:nt].count
50
+ vkl = usd[:kl].count
51
+ vnl = bqd[:nl].count
59
52
 
60
- # @return [Array<String>] lista txid dos trades novos
61
- def kyt
62
- @kyt ||= exd[:kt].keys - bqkyt
53
+ puts("TRADES #{format('%<a>20i %<b>21i %<o>3.3s', a: vkt, b: vnt, o: vkt == vnt ? 'OK' : 'NOK')}")
54
+ puts("LEDGER #{format('%<c>20i %<d>21i %<o>3.3s', c: vkl, d: vnl, o: vkl == vnl ? 'OK' : 'NOK')}")
63
55
  end
64
56
 
65
- # @return [Array<String>] lista txid dos ledger novos
66
- def kyl
67
- @kyl ||= exd[:kl].keys - bqkyl
68
- end
57
+ # mosta transacoes trades
58
+ def mtrades
59
+ return unless ops[:v] && novcust.any?
69
60
 
70
- # @return [Hash] trades kraken novos
71
- def novcust
72
- @novcust ||= exd[:kt].slice(*kyt)
61
+ puts("\ntrade data hora tipo par preco volume custo")
62
+ novcust.sort_by { |_, v| -v[:srx] }.each { |k, t| puts(fot(k, t)) }
73
63
  end
74
64
 
75
- # @return [Hash] ledger kraken novos
76
- def novcusl
77
- @novcusl ||= exd[:kl].slice(*kyl)
65
+ # mosta transacoes ledger
66
+ def mledger
67
+ return unless ops[:v] && novcusl.any?
68
+
69
+ puts("\nledger data hora tipo moeda quantidade custo")
70
+ novcusl.sort_by { |_, v| -v[:srx] }.each { |k, t| puts(fol(k, t)) }
78
71
  end
79
72
 
80
- # @example (see Apice#account_us)
81
73
  # @param [String] moe codigo kraken da moeda
82
74
  # @param [BigDecimal] sal saldo kraken da moeda
83
75
  # @return [String] texto formatado saldos
84
- def formata_saldos(moe, sal)
76
+ def fos(moe, sal)
85
77
  vbq = bqd[:sl][moe.downcase.to_sym].to_d
86
78
  format(
87
79
  '%<mo>-5.5s %<kr>21.9f %<bq>21.9f %<ok>3.3s',
@@ -92,10 +84,10 @@ module Cns
92
84
  )
93
85
  end
94
86
 
95
- # @example (see Apice#trades_us)
96
- # @param (see Bigquery#ust_val1)
87
+ # @param [Symbol] idx id da transacao
88
+ # @param [Hash] htn trades kraken
97
89
  # @return [String] texto formatado trade
98
- def formata_trades(idx, htx)
90
+ def fot(idx, htx)
99
91
  format(
100
92
  '%<ky>-6.6s %<dt>19.19s %<ty>-10.10s %<mo>-8.8s %<pr>8.2f %<vl>10.4f %<co>13.2f',
101
93
  ky: idx,
@@ -108,10 +100,10 @@ module Cns
108
100
  )
109
101
  end
110
102
 
111
- # @example (see Apice#ledger_us)
112
- # @param (see Bigquery#usl_val)
103
+ # @param idx (see fot)
104
+ # @param [Hash] hln ledger kraken
113
105
  # @return [String] texto formatado ledger
114
- def formata_ledger(idx, hlx)
106
+ def fol(idx, hlx)
115
107
  format(
116
108
  '%<ky>-6.6s %<dt>19.19s %<ty>-10.10s %<mo>-4.4s %<pr>18.7f %<vl>18.7f',
117
109
  ky: idx,
@@ -123,39 +115,19 @@ module Cns
123
115
  )
124
116
  end
125
117
 
126
- # @return [String] texto totais numero de transacoes
127
- def mtotais
128
- vkt = exd[:kt].count
129
- vnt = bqd[:nt].count
130
- vkl = exd[:kl].count
131
- vnl = bqd[:nl].count
132
-
133
- puts("TRADES #{format('%<a>20i %<b>21i %<o>3.3s', a: vkt, b: vnt, o: vkt == vnt ? 'OK' : 'NOK')}")
134
- puts("LEDGER #{format('%<c>20i %<d>21i %<o>3.3s', c: vkl, d: vnl, o: vkl == vnl ? 'OK' : 'NOK')}")
135
- end
136
-
137
- # @return [String] texto transacoes trades
138
- def mtrades
139
- return unless ops[:v] && novcust.any?
140
-
141
- puts("\ntrade data hora tipo par preco volume custo")
142
- novcust.sort_by { |_, v| -v[:srx] }.each { |k, t| puts(formata_trades(k, t)) }
143
- end
144
-
145
- # @return [String] texto transacoes ledger
146
- def mledger
147
- return unless ops[:v] && novcusl.any?
148
-
149
- puts("\nledger data hora tipo moeda quantidade custo")
150
- novcusl.sort_by { |_, v| -v[:srx] }.each { |k, t| puts(formata_ledger(k, t)) }
118
+ # @return [Boolean] mostra todas/novas transacoes
119
+ def show_all?
120
+ ops[:t] || false
151
121
  end
152
122
 
153
- # Processa accounts para garantir formato correto
123
+ # @param [Hash] itm recursos kraken
124
+ # @return [Hash<BigDecimal>] moedas & sados
154
125
  def pusa(itm)
155
126
  itm.select { |k, _| EM.include?(k) }.transform_values { |v| v.to_d }
156
127
  end
157
128
 
158
- # Processa campos comuns para garantir formato correto
129
+ # @param [Hash] itm transacao kraken
130
+ # @return [Hash] transaccao filtrada
159
131
  def pusk(itm)
160
132
  itm.map do |k, v|
161
133
  t = Integer(v[:time])
@@ -163,14 +135,51 @@ module Cns
163
135
  end.to_h
164
136
  end
165
137
 
166
- # Processa trades para garantir formato correto
167
- def pust(itm)
168
- pusk(itm).transform_values { |t| t.merge(pair: t[:pair].upcase, price: t[:price].to_d, vol: t[:vol].to_d, cost: t[:cost].to_d) }
138
+ # @param [Hash] htx trade kraken
139
+ # @return [Hash] transaccao filtrada
140
+ def pust(htx)
141
+ pusk(htx).transform_values { |t| t.merge(pair: t[:pair].upcase, price: t[:price].to_d, vol: t[:vol].to_d, cost: t[:cost].to_d) }
142
+ end
143
+
144
+ # @param [Hash] hlx ledger kraken
145
+ # @return [Hash] transaccao filtrada
146
+ def pusl(hlx)
147
+ pusk(hlx).transform_values { |t| t.merge(asset: t[:asset].upcase, amount: t[:amount].to_d, fee: t[:fee].to_d) }
148
+ end
149
+
150
+ # @return [Hash] dados exchange kraken - saldos & transacoes trades e ledger
151
+ def usd
152
+ @usd ||= {sl: pusa(api.account_us), kt: pust(api.trades_us), kl: pusl(api.ledger_us)}
169
153
  end
170
154
 
171
- # Processa ledgers para garantir formato correto
172
- def pusl(itm)
173
- pusk(itm).transform_values { |t| t.merge(asset: t[:asset].upcase, amount: t[:amount].to_d, fee: t[:fee].to_d) }
155
+ # @return [Array<Symbol>] indices trades bigquery
156
+ def bqkyt
157
+ @bqkyt ||= show_all? ? [] : bqd[:nt].map { |t| t[:txid].to_sym }
158
+ end
159
+
160
+ # @return [Array<Symbol>] indices ledger bigquery
161
+ def bqkyl
162
+ @bqkyl ||= show_all? ? [] : bqd[:nl].map { |l| l[:txid].to_sym }
163
+ end
164
+
165
+ # @return [Array<Symbol>] lista txid trades novos
166
+ def kyt
167
+ @kyt ||= usd[:kt].keys - bqkyt
168
+ end
169
+
170
+ # @return [Array<Symbol>] lista txid ledger novos
171
+ def kyl
172
+ @kyl ||= usd[:kl].keys - bqkyl
173
+ end
174
+
175
+ # @return [Hash] trades kraken novos
176
+ def novcust
177
+ @novcust ||= usd[:kt].slice(*kyt)
178
+ end
179
+
180
+ # @return [Hash] ledger kraken novos
181
+ def novcusl
182
+ @novcusl ||= usd[:kl].slice(*kyl)
174
183
  end
175
184
  end
176
185
  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.9.2'
4
+ VERSION = '0.9.4'
5
5
  end
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.9.2
4
+ version: 0.9.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hernâni Rodrigues Vaz
8
8
  bindir: exe
9
9
  cert_chain: []
10
- date: 2025-03-03 00:00:00.000000000 Z
10
+ date: 2025-03-04 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: bundler