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.
- checksums.yaml +4 -4
- data/.rubocop.yml +2 -2
- data/Gemfile.lock +2 -2
- data/lib/cns/apibc.rb +4 -4
- data/lib/cns/apice.rb +9 -9
- data/lib/cns/bigquery.rb +106 -226
- data/lib/cns/bitcoinde.rb +81 -74
- data/lib/cns/etherscan.rb +180 -211
- data/lib/cns/greymass.rb +62 -69
- data/lib/cns/kraken.rb +73 -67
- data/lib/cns/version.rb +1 -1
- metadata +2 -2
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 { |
|
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
|
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
|
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
|
71
|
-
def
|
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
|
-
{
|
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 { |
|
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
|
-
|
148
|
-
|
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
|
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 ||= {
|
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(
|
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=#{
|
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
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
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
|
-
|
57
|
-
|
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
|
-
#
|
61
|
-
def
|
62
|
-
|
63
|
-
end
|
57
|
+
# mosta transacoes trades
|
58
|
+
def mtrades
|
59
|
+
return unless ops[:v] && novcust.any?
|
64
60
|
|
65
|
-
|
66
|
-
|
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
|
-
#
|
71
|
-
def
|
72
|
-
|
73
|
-
end
|
65
|
+
# mosta transacoes ledger
|
66
|
+
def mledger
|
67
|
+
return unless ops[:v] && novcusl.any?
|
74
68
|
|
75
|
-
|
76
|
-
|
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
|
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
|
-
# @
|
96
|
-
# @param
|
87
|
+
# @param [Symbol] idx id da transacao
|
88
|
+
# @param [Hash] htn trades kraken
|
97
89
|
# @return [String] texto formatado trade
|
98
|
-
def
|
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
|
-
# @
|
112
|
-
# @param
|
103
|
+
# @param idx (see fot)
|
104
|
+
# @param [Hash] hln ledger kraken
|
113
105
|
# @return [String] texto formatado ledger
|
114
|
-
def
|
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
|
-
|
127
|
-
|
128
|
-
|
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
|
-
|
134
|
-
|
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
|
-
# @
|
138
|
-
|
139
|
-
|
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
|
-
|
142
|
-
|
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
|
-
# @
|
146
|
-
|
147
|
-
|
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
|
-
|
150
|
-
|
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
|
-
#
|
154
|
-
def
|
155
|
-
|
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
|
-
|
159
|
-
|
160
|
-
|
164
|
+
# @return [Array<Symbol>] lista txid ledger novos
|
165
|
+
def kyl
|
166
|
+
@kyl ||= exd[:kl].keys - bqkyl
|
161
167
|
end
|
162
168
|
|
163
|
-
#
|
164
|
-
def
|
165
|
-
|
169
|
+
# @return [Hash] trades kraken novos
|
170
|
+
def novcust
|
171
|
+
@novcust ||= exd[:kt].slice(*kyt)
|
166
172
|
end
|
167
173
|
|
168
|
-
#
|
169
|
-
def
|
170
|
-
|
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
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.
|
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-
|
10
|
+
date: 2025-03-04 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: bundler
|