cns 0.9.1 → 0.9.3

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
- sort_key: :itx,
31
- format: :formata_ledger,
32
- header: "\nsequence num from to accao data valor moeda",
33
- adjustment_key: :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,52 +95,11 @@ 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[:sort_key]] }.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.map { |t| "#{t[TT[:adjustment_key]]}: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
-
111
- def show_all?
112
- ops[:t] || false
113
- end
114
-
115
- def bqidt
116
- @bqidt ||= show_all? ? [] : (bqd[:nt]&.map { |i| i[:itx] } || [])
117
- end
118
-
119
- # @return [Array<Integer>] lista indices transacoes novas
120
- def idt
121
- @idt ||= bcd.map { |o| o[:tx].map { |i| i[:itx] } }.flatten - bqidt
122
- end
123
-
124
- # @example (see Apibc#account_gm)
125
98
  # @param [Hash] wbq wallet bigquery
126
99
  # @return [Hash] dados greymass - address, saldo & transacoes
127
100
  def base_bc(wbq)
128
101
  xbq = wbq[:ax]
129
- { ax: xbq, sl: peosa(xbq).reduce(:+), tx: peost(xbq, api.ledger_gm(xbq)) }
102
+ {ax: xbq, sl: peosa(xbq).reduce(:+), tx: peost(xbq, api.ledger_gm(xbq))}
130
103
  end
131
104
 
132
105
  # @param wbq (see base_bc)
@@ -138,22 +111,17 @@ module Cns
138
111
  id: wbq[:id],
139
112
  ax: xbq,
140
113
  bs: wbq[:sl],
141
- bt: bqd[:nt].select { |obj| obj[:iax] == xbq },
114
+ bt: bqd[:nt].select { |o| o[:iax] == xbq },
142
115
  es: hbc[:sl],
143
116
  et: hbc[:tx]
144
117
  }
145
118
  end
146
119
 
147
- # @return [Array<Hash>] lista transacoes novas
148
- def novneost
149
- @novneost ||= bcd.map { |obc| obc[:tx].select { |obj| idt.include?(obj[:itx]) } }.flatten
150
- end
151
-
152
- # @return [Array<Hash>] lista ordenada transacoes
153
- def soreost
154
- novneost.sort_by { |i| -i[:itx] }
120
+ def show_all?
121
+ ops[:t] || false
155
122
  end
156
123
 
124
+ # @param [String] add EOS account name
157
125
  # @return [Array<BigDecimal>] lista recursos - liquido, net, spu
158
126
  def peosa(add)
159
127
  hac = api.account_gm(add)
@@ -161,7 +129,7 @@ module Cns
161
129
  [hac[:core_liquid_balance].to_d, htr[:net_weight].to_d, htr[:cpu_weight].to_d]
162
130
  end
163
131
 
164
- # @param add (see Apibc#account_gm)
132
+ # @param add (see peosa)
165
133
  # @param [Array<Hash>] ary lista transacoes
166
134
  # @return [Array<Hash>] lista transacoes filtrada
167
135
  def peost(add, ary)
@@ -183,5 +151,30 @@ module Cns
183
151
  )
184
152
  end
185
153
  end
154
+
155
+ # @return [Array<Hash>] todos os dados greymass - saldos & transacoes
156
+ def bcd
157
+ @bcd ||= bqd[:wb].map { |o| base_bc(o) }
158
+ end
159
+
160
+ # @return [Array<Hash>] todos os dados juntos bigquery & greymass
161
+ def dados
162
+ @dados ||= bqd[:wb].map { |b| bq_bc(b, bcd.find { |g| b[:ax] == g[:ax] }) }
163
+ end
164
+
165
+ # @return [Array<Integer>] indices transacoes bigquery
166
+ def bqidt
167
+ @bqidt ||= show_all? ? [] : (bqd[:nt]&.map { |i| i[:itx] } || [])
168
+ end
169
+
170
+ # @return [Array<Integer>] indices transacoes novas (greymass - bigquery)
171
+ def idt
172
+ @idt ||= bcd.map { |o| o[:tx].map { |i| i[:itx] } }.flatten - bqidt
173
+ end
174
+
175
+ # @return [Array<Hash>] lista transacoes novas
176
+ def novneost
177
+ @novneost ||= bcd.map { |obc| obc[:tx].select { |o| idt.include?(o[:itx]) } }.flatten
178
+ end
186
179
  end
187
180
  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
@@ -27,61 +25,55 @@ module Cns
27
25
 
28
26
  # @return [Hash] dados exchange kraken - saldos & transacoes trades e ledger
29
27
  def exd
30
- @exd ||= { sl: pusa(api.account_us), kt: pust(api.trades_us), kl: pusl(api.ledger_us) }
28
+ @exd ||= {sl: pusa(api.account_us), kt: pust(api.trades_us), kl: pusl(api.ledger_us)}
31
29
  end
32
30
 
33
31
  # @return [String] texto saldos & transacoes & ajuste dias
34
32
  def mresumo
35
33
  puts("\nKRAKEN\ntipo kraken bigquery")
36
- exd[:sl].sort.each { |key, val| puts(formata_saldos(key, val)) }
34
+ exd[:sl].sort.each { |key, val| puts(fos(key, val)) }
37
35
  mtotais
38
36
 
39
37
  mtrades
40
38
  mledger
41
39
  return if novcust.empty?
42
40
 
43
- puts("\nstring ajuste dias dos trades\n-h=#{kyt.map { |obj| "#{obj}:0" }.join(' ')}")
41
+ puts("\nstring ajuste dias dos trades\n-h=#{novcust.sort_by { |_, v| -v[:srx] }.map { |k, _v| "#{k}:0" }.join(' ')}")
44
42
  end
45
43
 
46
44
  private
47
45
 
48
- def show_all?
49
- ops[:t] || false
50
- end
51
-
52
- def bqkyt
53
- @bqkyt ||= show_all? ? [] : (bqd[:nt]&.map { |t| t[:txid].to_sym } || [])
54
- end
46
+ # mosta contadores transacoes
47
+ def mtotais
48
+ vkt = exd[:kt].count
49
+ vnt = bqd[:nt].count
50
+ vkl = exd[:kl].count
51
+ vnl = bqd[:nl].count
55
52
 
56
- def bqkyl
57
- @bqkyl ||= show_all? ? [] : (bqd[:nl]&.map { |l| l[:txid].to_sym } || [])
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')}")
58
55
  end
59
56
 
60
- # @return [Array<String>] lista txid dos trades novos
61
- def kyt
62
- @kyt ||= exd[:kt].keys - bqkyt
63
- end
57
+ # mosta transacoes trades
58
+ def mtrades
59
+ return unless ops[:v] && novcust.any?
64
60
 
65
- # @return [Array<String>] lista txid dos ledger novos
66
- def kyl
67
- @kyl ||= exd[:kl].keys - bqkyl
61
+ puts("\ntrade data hora tipo par preco volume custo")
62
+ novcust.sort_by { |_, v| -v[:srx] }.each { |k, t| puts(fot(k, t)) }
68
63
  end
69
64
 
70
- # @return [Hash] trades kraken novos
71
- def novcust
72
- @novcust ||= exd[:kt].slice(*kyt)
73
- end
65
+ # mosta transacoes ledger
66
+ def mledger
67
+ return unless ops[:v] && novcusl.any?
74
68
 
75
- # @return [Hash] ledger kraken novos
76
- def novcusl
77
- @novcusl ||= exd[:kl].slice(*kyl)
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,51 +115,65 @@ 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
118
+ def show_all?
119
+ ops[:t] || false
120
+ end
132
121
 
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')}")
122
+ # @param [Hash] itm recursos kraken
123
+ # @return [Hash<BigDecimal>] moedas & sados
124
+ def pusa(itm)
125
+ itm.select { |k, _| EM.include?(k) }.transform_values { |v| v.to_d }
135
126
  end
136
127
 
137
- # @return [String] texto transacoes trades
138
- def mtrades
139
- return unless ops[:v] && novcust.any?
128
+ # @param [Hash] itm transacao kraken
129
+ # @return [Hash] transaccao filtrada
130
+ def pusk(itm)
131
+ itm.map do |k, v|
132
+ t = Integer(v[:time])
133
+ [k, v.merge(txid: k.to_s, srx: t, time: Time.at(t))]
134
+ end.to_h
135
+ end
140
136
 
141
- puts("\ntrade data hora tipo par preco volume custo")
142
- novcust.sort_by { |_, v| -v[:srx] }.each { |i, t| puts(formata_trades(i, t)) }
137
+ # @param [Hash] htx trade kraken
138
+ # @return [Hash] transaccao filtrada
139
+ def pust(htx)
140
+ 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) }
143
141
  end
144
142
 
145
- # @return [String] texto transacoes ledger
146
- def mledger
147
- return unless ops[:v] && novcusl.any?
143
+ # @param [Hash] hlx ledger kraken
144
+ # @return [Hash] transaccao filtrada
145
+ def pusl(hlx)
146
+ pusk(hlx).transform_values { |t| t.merge(asset: t[:asset].upcase, amount: t[:amount].to_d, fee: t[:fee].to_d) }
147
+ end
148
148
 
149
- puts("\nledger data hora tipo moeda quantidade custo")
150
- novcusl.sort_by { |_, v| -v[:srx] }.each { |i, t| puts(formata_ledger(i, t)) }
149
+ # @return [Array<Symbol>] indices trades bigquery
150
+ def bqkyt
151
+ @bqkyt ||= show_all? ? [] : (bqd[:nt]&.map { |t| t[:txid].to_sym } || [])
151
152
  end
152
153
 
153
- # Processa os trades para garantir que as datas estejam no formato correto
154
- def pusa(itm)
155
- itm.select { |k, _| EM.include?(k) }.transform_values { |v| v.to_d }
154
+ # @return [Array<Symbol>] indices ledger bigquery
155
+ def bqkyl
156
+ @bqkyl ||= show_all? ? [] : (bqd[:nl]&.map { |l| l[:txid].to_sym } || [])
157
+ end
158
+
159
+ # @return [Array<Symbol>] lista txid trades novos
160
+ def kyt
161
+ @kyt ||= exd[:kt].keys - bqkyt
156
162
  end
157
163
 
158
- def puss(itm)
159
- tym = Integer(itm[:time])
160
- itm.merge(srx: tym, time: Time.at(tym))
164
+ # @return [Array<Symbol>] lista txid ledger novos
165
+ def kyl
166
+ @kyl ||= exd[:kl].keys - bqkyl
161
167
  end
162
168
 
163
- # Processa os trades para garantir que as datas estejam no formato correto
164
- def pust(itm)
165
- itm.transform_values { |t| puss(t).merge(pair: t[:pair].upcase, price: t[:price].to_d, vol: t[:vol].to_d, cost: t[:cost].to_d) }
169
+ # @return [Hash] trades kraken novos
170
+ def novcust
171
+ @novcust ||= exd[:kt].slice(*kyt)
166
172
  end
167
173
 
168
- # Processa os ledger entries para garantir que as datas estejam no formato correto
169
- def pusl(itm)
170
- itm.transform_values { |t| puss(t).merge(asset: t[:asset].upcase, amount: t[:amount].to_d, fee: t[:fee].to_d) }
174
+ # @return [Hash] ledger kraken novos
175
+ def novcusl
176
+ @novcusl ||= exd[:kl].slice(*kyl)
171
177
  end
172
178
  end
173
179
  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.1'
4
+ VERSION = '0.9.3'
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.1
4
+ version: 0.9.3
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-01 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