cns 0.8.3 → 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 +4 -4
- data/.rubocop.yml +1 -1
- data/Gemfile.lock +4 -3
- data/lib/cns/bigquery.rb +209 -285
- data/lib/cns/bitcoinde.rb +10 -12
- data/lib/cns/etherscan.rb +35 -27
- 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: 8f7ae1ef8366ed9cf561233f61e42435ab6d5b7202c64936310d057f99689138
|
4
|
+
data.tar.gz: 29610ef7729632d29c3d97aeccc1732cac387265de5536327734d5f4af54a265
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5c28857d6b4fe429e9f8f9eb6ddfdca805343c6f5347b40624a6ea03a687bd9b90d4c257c1d7434629d404df6914f9dfa6c62883babb843cc74842643cd7d39e
|
7
|
+
data.tar.gz: b3a334a6580af627911d51037bad7065af7129239fd2ccbaf45750cba7f8c7a57b48ab28f4605a00ac9b5bbadb304a9f80e6af1519ad7d0c677d6acafb153bc3
|
data/.rubocop.yml
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
cns (0.8.
|
4
|
+
cns (0.8.5)
|
5
5
|
curb
|
6
6
|
faraday
|
7
7
|
google-cloud-bigquery
|
@@ -89,7 +89,8 @@ GEM
|
|
89
89
|
multi_json (~> 1.11)
|
90
90
|
os (>= 0.9, < 2.0)
|
91
91
|
signet (>= 0.16, < 2.a)
|
92
|
-
httpclient (2.
|
92
|
+
httpclient (2.9.0)
|
93
|
+
mutex_m
|
93
94
|
jaro_winkler (1.6.0)
|
94
95
|
json (2.10.1)
|
95
96
|
jwt (2.10.1)
|
@@ -106,7 +107,7 @@ GEM
|
|
106
107
|
mutex_m (0.3.0)
|
107
108
|
net-http (0.6.0)
|
108
109
|
uri
|
109
|
-
nokogiri (1.18.
|
110
|
+
nokogiri (1.18.3-x86_64-linux-gnu)
|
110
111
|
racc (~> 1.4)
|
111
112
|
observer (0.1.2)
|
112
113
|
os (1.1.4)
|
data/lib/cns/bigquery.rb
CHANGED
@@ -7,17 +7,26 @@ require('bigdecimal/util')
|
|
7
7
|
module Cns
|
8
8
|
BD = 'hernanirvaz.coins'
|
9
9
|
FO = File.expand_path("~/#{File.basename($PROGRAM_NAME)}.log")
|
10
|
+
TB = {
|
11
|
+
i: %w[blocknumber timestamp txhash axfrom axto iax value contractaddress input type gas gasused traceid iserror errcode],
|
12
|
+
p: %w[blocknumber timestamp blockreward iax],
|
13
|
+
w: %w[withdrawalindex validatorindex address amount blocknumber timestamp],
|
14
|
+
t: %w[blocknumber timestamp txhash nonce blockhash transactionindex axfrom axto iax value gas gasprice gasused iserror txreceipt_status input contractaddress dias],
|
15
|
+
k: %w[blocknumber timestamp txhash nonce blockhash transactionindex axfrom axto iax value tokenname tokensymbol tokendecimal gas gasprice gasused input contractaddress dias],
|
16
|
+
neost: %w[gseq aseq bnum time contract action acfrom acto iax amount moeda memo dias],
|
17
|
+
cdet: %w[txid time tp user btc eur dtc dias],
|
18
|
+
cdel: %w[txid time tp add moe qt fee],
|
19
|
+
cust: %w[txid ordertxid pair time type ordertype price cost fee vol margin misc ledgers dias],
|
20
|
+
cusl: %w[txid refid time type aclass asset amount fee]
|
21
|
+
}
|
10
22
|
|
11
23
|
# classe para processar bigquery
|
12
24
|
class Bigquery
|
13
25
|
# @return [Google::Cloud::Bigquery] API bigquery
|
14
|
-
attr_reader :api
|
15
26
|
# @return [Google::Cloud::Bigquery::QueryJob] job bigquery
|
16
|
-
attr_reader :job
|
17
27
|
# @return [Thor::CoreExt::HashWithIndifferentAccess] opcoes trabalho
|
18
|
-
attr_reader :ops
|
19
28
|
# @return (see sql)
|
20
|
-
attr_reader :sqr
|
29
|
+
attr_reader :api, :job, :ops, :sqr
|
21
30
|
|
22
31
|
# @param [Thor::CoreExt::HashWithIndifferentAccess] pop opcoes trabalho
|
23
32
|
# @option pop [Hash] :h ({}) configuracao ajuste reposicionamento temporal
|
@@ -28,7 +37,7 @@ module Cns
|
|
28
37
|
# usa env GOOGLE_APPLICATION_CREDENTIALS para obter credentials
|
29
38
|
# @see https://cloud.google.com/bigquery/docs/authentication/getting-started
|
30
39
|
@api = Google::Cloud::Bigquery.new
|
31
|
-
@ops = pop
|
40
|
+
@ops = pop.transform_keys(&:to_sym)
|
32
41
|
end
|
33
42
|
|
34
43
|
# mostra situacao completa entre kraken/bitcoinde/paymium/therock/etherscan/greymass & bigquery
|
@@ -57,26 +66,22 @@ module Cns
|
|
57
66
|
|
58
67
|
# insere (caso existam) dados novos kraken/bitcoinde/paymium/therock/etherscan/greymass no bigquery
|
59
68
|
def processa_tudo
|
60
|
-
|
61
|
-
puts(trs_ini + str)
|
69
|
+
puts(trs_ini + "#{processa_us}, #{processa_de}, #{processa_eth}, #{processa_eos}")
|
62
70
|
end
|
63
71
|
|
64
72
|
# insere (caso existam) dados novos kraken/etherscan no bigquery
|
65
73
|
def processa_wkrk
|
66
|
-
|
67
|
-
puts(trs_ini + str)
|
74
|
+
puts(trs_ini + "#{processa_us}, #{processa_eth}")
|
68
75
|
end
|
69
76
|
|
70
77
|
# insere (caso existam) dados novos etherscan no bigquery
|
71
78
|
def processa_weth
|
72
|
-
|
73
|
-
puts(trs_ini + str)
|
79
|
+
puts(trs_ini + processa_eth)
|
74
80
|
end
|
75
81
|
|
76
82
|
# insere (caso existam) dados novos etherscan no bigquery (output to file)
|
77
83
|
def processa_ceth
|
78
|
-
|
79
|
-
File.open(FO, mode: 'a') { |out| out.puts(trs_ini + str) }
|
84
|
+
File.open(FO, mode: 'a') { |out| out.puts(trs_ini + processa_ethc) }
|
80
85
|
end
|
81
86
|
|
82
87
|
private
|
@@ -85,55 +90,35 @@ module Cns
|
|
85
90
|
#
|
86
91
|
# @return [String] linhas & tabelas afetadas
|
87
92
|
def processa_eth
|
88
|
-
|
89
|
-
str += format(' %<n>i netht', n: dml(netht_ins)) if apies.novtx.count.positive?
|
90
|
-
str += format(' %<n>i nethi', n: dml(nethi_ins)) if apies.novix.count.positive?
|
91
|
-
str += format(' %<n>i nethp', n: dml(nethp_ins)) if apies.novpx.count.positive?
|
92
|
-
str += format(' %<n>i nethw', n: dml(nethw_ins)) if apies.novwx.count.positive?
|
93
|
-
str += format(' %<n>i nethk', n: dml(nethk_ins)) if apies.novkx.count.positive?
|
94
|
-
str
|
93
|
+
tabelas_out(apies, %w[ETH], %i[t i p w k], 'neth')
|
95
94
|
end
|
96
95
|
|
97
96
|
# insere transacoes blockchain novas nas tabelas netht (norml), nethi (internas), nethp (block), nethw (withdrawals), nethk (token)
|
98
97
|
#
|
99
98
|
# @return [String] linhas & tabelas afetadas
|
100
99
|
def processa_ethc
|
101
|
-
|
102
|
-
str += format(' %<n>i netht', n: dml(netbt_ins)) if apiesc.novtx.count.positive?
|
103
|
-
str += format(' %<n>i nethi', n: dml(netbi_ins)) if apiesc.novix.count.positive?
|
104
|
-
str += format(' %<n>i nethp', n: dml(netbp_ins)) if apiesc.novpx.count.positive?
|
105
|
-
str += format(' %<n>i nethw', n: dml(netbw_ins)) if apiesc.novwx.count.positive?
|
106
|
-
str += format(' %<n>i nethk', n: dml(netbk_ins)) if apiesc.novkx.count.positive?
|
107
|
-
str
|
100
|
+
tabelas_out(apiesc, %w[ETH], %i[t i p w k], 'neth')
|
108
101
|
end
|
109
102
|
|
110
103
|
# insere transacoes exchange kraken novas nas tabelas ust (trades), usl (ledger)
|
111
104
|
#
|
112
105
|
# @return [String] linhas & tabelas afetadas
|
113
106
|
def processa_us
|
114
|
-
|
115
|
-
str += format(' %<n>i ust', n: dml(ust_ins)) if apius.trades.count.positive?
|
116
|
-
str += format(' %<n>i usl', n: dml(usl_ins)) if apius.ledger.count.positive?
|
117
|
-
str
|
107
|
+
tabelas_cus(apius, %w[KRAKEN], %i[cust cusl])
|
118
108
|
end
|
119
109
|
|
120
110
|
# insere transacoes exchange bitcoinde novas nas tabelas det (trades), del (ledger)
|
121
111
|
#
|
122
112
|
# @return [String] linhas & tabelas afetadas
|
123
113
|
def processa_de
|
124
|
-
|
125
|
-
str += format(' %<n>i det', n: dml(det_ins)) if apide.trades.count.positive?
|
126
|
-
str += format(' %<n>i del', n: dml(del_ins)) if apide.ledger.count.positive?
|
127
|
-
str
|
114
|
+
tabelas_out(apide, %w[BITCOINDE], %i[cdet cdel])
|
128
115
|
end
|
129
116
|
|
130
117
|
# insere transacoes blockchain novas na tabela eos
|
131
118
|
#
|
132
119
|
# @return [String] linhas & tabelas afetadas
|
133
120
|
def processa_eos
|
134
|
-
|
135
|
-
str += format(' %<n>i eos ', n: dml(eost_ins)) if apigm.novax.count.positive?
|
136
|
-
str
|
121
|
+
tabelas_out(apigm, %w[EOS], %i[neost])
|
137
122
|
end
|
138
123
|
|
139
124
|
# cria job bigquery & verifica execucao
|
@@ -143,9 +128,11 @@ module Cns
|
|
143
128
|
def job?(cmd)
|
144
129
|
@job = api.query_job(cmd)
|
145
130
|
job.wait_until_done!
|
146
|
-
|
147
|
-
|
148
|
-
|
131
|
+
|
132
|
+
return false unless job.failed?
|
133
|
+
|
134
|
+
puts("BigQuery Error: #{job.error['message']}")
|
135
|
+
true
|
149
136
|
end
|
150
137
|
|
151
138
|
# cria Structured Query Language (SQL) job bigquery
|
@@ -165,34 +152,28 @@ module Cns
|
|
165
152
|
job?(cmd) ? 0 : job.num_dml_affected_rows
|
166
153
|
end
|
167
154
|
|
168
|
-
|
169
|
-
|
170
|
-
@apies ||= Etherscan.new(
|
155
|
+
def initialize_etherscan_client(prx)
|
156
|
+
Etherscan.new(
|
171
157
|
{
|
172
|
-
wb: sql("
|
173
|
-
ni: sql("
|
174
|
-
nk: sql("
|
175
|
-
np: sql("
|
176
|
-
nt: sql("
|
177
|
-
nw: sql("
|
158
|
+
wb: sql("SELECT * FROM #{BD}.wet#{prx[-1]} ORDER BY ax"),
|
159
|
+
ni: sql("SELECT * FROM #{BD}.#{prx}i"),
|
160
|
+
nk: sql("SELECT * FROM #{BD}.#{prx}k"),
|
161
|
+
np: sql("SELECT * FROM #{BD}.#{prx}p"),
|
162
|
+
nt: sql("SELECT * FROM #{BD}.#{prx}t"),
|
163
|
+
nw: sql("SELECT * FROM #{BD}.#{prx}w")
|
178
164
|
},
|
179
165
|
ops
|
180
166
|
)
|
181
167
|
end
|
182
168
|
|
169
|
+
# @return [Etherscan] API blockchain ETH
|
170
|
+
def apies
|
171
|
+
@apies ||= initialize_etherscan_client('netb')
|
172
|
+
end
|
173
|
+
|
183
174
|
# @return [Etherscan] API blockchain ETH
|
184
175
|
def apiesc
|
185
|
-
@apiesc ||=
|
186
|
-
{
|
187
|
-
wb: sql("select * from #{BD}.wetc order by ax"),
|
188
|
-
ni: sql("select * from #{BD}.netci"),
|
189
|
-
nk: sql("select * from #{BD}.netck"),
|
190
|
-
np: sql("select * from #{BD}.netcp"),
|
191
|
-
nt: sql("select * from #{BD}.netct"),
|
192
|
-
nw: sql("select * from #{BD}.netcw")
|
193
|
-
},
|
194
|
-
ops
|
195
|
-
)
|
176
|
+
@apiesc ||= initialize_etherscan_client('netc')
|
196
177
|
end
|
197
178
|
|
198
179
|
# @return [Greymass] API blockchain EOS
|
@@ -224,297 +205,240 @@ module Cns
|
|
224
205
|
)
|
225
206
|
end
|
226
207
|
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
end
|
208
|
+
def tabelas_cus(src, str, ltb, prx = '')
|
209
|
+
ltb.each do |itm|
|
210
|
+
novx = src.send("nov#{prx}#{itm}")
|
211
|
+
next if novx.empty?
|
232
212
|
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
'value,contractaddress,input,type,gas,gasused,traceid,iserror,errcode) VALUES'
|
213
|
+
str << format(' %<n>i %<t>s', n: dml(insert_cus(prx, itm, novx)), t: prx + itm.to_s)
|
214
|
+
end
|
215
|
+
str.join
|
237
216
|
end
|
238
217
|
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
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?
|
243
222
|
|
244
|
-
|
245
|
-
|
246
|
-
|
223
|
+
str << format(' %<n>i %<t>s', n: dml(insert_out(prx, itm, novx)), t: prx + itm.to_s)
|
224
|
+
end
|
225
|
+
str.join
|
247
226
|
end
|
248
227
|
|
249
|
-
# @return [String] comando insert SQL formatado
|
250
|
-
def
|
251
|
-
"
|
252
|
-
'value,tokenname,tokensymbol,tokendecimal,gas,gasprice,gasused,input,contractaddress,dias) VALUES'
|
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(',')}"
|
253
231
|
end
|
254
232
|
|
255
|
-
# @return [String] comando insert SQL formatado
|
256
|
-
def
|
257
|
-
"#{
|
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(',')}"
|
258
236
|
end
|
259
237
|
|
260
|
-
#
|
261
|
-
def
|
262
|
-
|
263
|
-
end
|
238
|
+
# SQL value formatting methods with improved safety
|
239
|
+
def quote(value)
|
240
|
+
return 'null' if value.nil? || value.empty?
|
264
241
|
|
265
|
-
|
266
|
-
def nethp_ins
|
267
|
-
"#{bnethp_ins}#{apies.novpx.map { |obj| nethp_val(obj) }.join(',')}"
|
242
|
+
"'#{value}'"
|
268
243
|
end
|
269
244
|
|
270
|
-
|
271
|
-
|
272
|
-
"#{bnethw_ins}#{apies.novwx.map { |obj| nethw_val(obj) }.join(',')}"
|
273
|
-
end
|
245
|
+
def numeric(value)
|
246
|
+
return 'null' if value.nil?
|
274
247
|
|
275
|
-
|
276
|
-
def nethk_ins
|
277
|
-
"#{bnethk_ins}#{apies.novkx.map { |obj| nethk_val(obj) }.join(',')}"
|
248
|
+
"CAST('#{value}' AS NUMERIC)"
|
278
249
|
end
|
279
250
|
|
280
|
-
|
281
|
-
|
282
|
-
"#{bnetht_ins}#{apiesc.novtx.map { |obj| netht_val(obj) }.join(',')}"
|
283
|
-
end
|
251
|
+
def integer(value)
|
252
|
+
return '0' if value.nil?
|
284
253
|
|
285
|
-
|
286
|
-
|
287
|
-
|
254
|
+
Integer(value).to_s
|
255
|
+
rescue StandardError
|
256
|
+
'null'
|
288
257
|
end
|
289
258
|
|
290
|
-
|
291
|
-
|
292
|
-
"#{bnethp_ins}#{apiesc.novpx.map { |obj| nethp_val(obj) }.join(',')}"
|
259
|
+
def ptime(sec)
|
260
|
+
"PARSE_DATETIME('%s', '#{String(sec.round)}')"
|
293
261
|
end
|
294
262
|
|
295
|
-
|
296
|
-
|
297
|
-
"#{bnethw_ins}#{apiesc.novwx.map { |obj| nethw_val(obj) }.join(',')}"
|
263
|
+
def ptimestamp(value)
|
264
|
+
"DATETIME(TIMESTAMP('#{value}'))"
|
298
265
|
end
|
299
266
|
|
300
|
-
# @return [String] comando insert SQL formatado nethk (token)
|
301
|
-
def netbk_ins
|
302
|
-
"#{bnethk_ins}#{apiesc.novkx.map { |obj| nethk_val(obj) }.join(',')}"
|
303
|
-
end
|
304
|
-
|
305
|
-
# @return [String] comando insert SQL formatado eos
|
306
|
-
def eost_ins
|
307
|
-
"insert #{BD}.neost(gseq,aseq,bnum,time,contract,action,acfrom,acto,iax,amount,moeda,memo,dias" \
|
308
|
-
") VALUES#{apigm.novax.map { |obj| eost_val(obj) }.join(',')}"
|
309
|
-
end
|
310
|
-
|
311
|
-
# @return [String] comando insert SQL formatado det (trades)
|
312
|
-
def det_ins
|
313
|
-
"insert #{BD}.cdet(txid,time,tp,user,btc,eur,dtc,dias) VALUES#{apide.trades.map { |obj| det_val(obj) }.join(',')}"
|
314
|
-
end
|
315
|
-
|
316
|
-
# @return [String] comando insert SQL formatado del (ledger)
|
317
|
-
def del_ins
|
318
|
-
"insert #{BD}.cdel(txid,time,tp,add,moe,qt,fee) VALUES#{apide.ledger.map { |obj| del_val(obj) }.join(',')}"
|
319
|
-
end
|
320
|
-
|
321
|
-
# @return [String] comando insert SQL formatado ust (trades)
|
322
|
-
def ust_ins
|
323
|
-
"insert #{BD}.cust(txid,ordertxid,pair,time,type,ordertype,price,cost,fee,vol,margin,misc,ledgers,dias) " \
|
324
|
-
"VALUES#{apius.trades.map { |key, val| ust_val(key, val) }.join(',')}"
|
325
|
-
end
|
326
|
-
|
327
|
-
# @return [String] comando insert SQL formatado usl (ledger)
|
328
|
-
def usl_ins
|
329
|
-
"insert #{BD}.cusl(txid,refid,time,type,aclass,asset,amount,fee) " \
|
330
|
-
"VALUES#{apius.ledger.map { |key, val| usl_val(key, val) }.join(',')}"
|
331
|
-
end
|
332
|
-
|
333
|
-
# @example (see Apibc#norml_es)
|
334
267
|
# @param [Hash] htx transacao norml etherscan
|
335
268
|
# @return [String] valores formatados netht (norml parte1)
|
336
269
|
def netht_val(htx)
|
337
|
-
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
|
345
|
-
|
346
|
-
|
347
|
-
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
|
352
|
-
|
353
|
-
|
354
|
-
|
355
|
-
|
356
|
-
|
357
|
-
|
358
|
-
|
359
|
-
|
360
|
-
# @example (see Apibc#inter_es)
|
270
|
+
"(#{[
|
271
|
+
integer(htx[:blockNumber]),
|
272
|
+
integer(htx[:timeStamp]),
|
273
|
+
quote(htx[:hash]),
|
274
|
+
integer(htx[:nonce]),
|
275
|
+
quote(htx[:blockHash]),
|
276
|
+
integer(htx[:transactionIndex]),
|
277
|
+
quote(htx[:from]),
|
278
|
+
quote(htx[:to]),
|
279
|
+
quote(htx[:iax]),
|
280
|
+
numeric(htx[:value]),
|
281
|
+
numeric(htx[:gas]),
|
282
|
+
numeric(htx[:gasPrice]),
|
283
|
+
numeric(htx[:gasUsed]),
|
284
|
+
integer(htx[:isError]),
|
285
|
+
integer(htx[:txreceipt_status]),
|
286
|
+
quote(htx[:input]),
|
287
|
+
quote(htx[:contractAddress]),
|
288
|
+
integer(ops.dig(:h, htx[:blockNumber]))
|
289
|
+
].join(',')})"
|
290
|
+
end
|
291
|
+
|
361
292
|
# @param [Hash] htx transacao internas etherscan
|
362
293
|
# @return [String] valores formatados nethi (internas parte1)
|
363
294
|
def nethi_val(htx)
|
364
|
-
|
365
|
-
|
366
|
-
|
367
|
-
|
368
|
-
|
369
|
-
|
370
|
-
|
371
|
-
|
372
|
-
|
373
|
-
|
374
|
-
|
375
|
-
|
376
|
-
|
377
|
-
|
378
|
-
|
379
|
-
|
380
|
-
|
381
|
-
|
382
|
-
|
383
|
-
end
|
384
|
-
|
385
|
-
# @example (see Apibc#block_es)
|
295
|
+
"(#{[
|
296
|
+
integer(htx[:blockNumber]),
|
297
|
+
integer(htx[:timeStamp]),
|
298
|
+
quote(htx[:hash]),
|
299
|
+
quote(htx[:from]),
|
300
|
+
quote(htx[:to]),
|
301
|
+
quote(htx[:iax]),
|
302
|
+
numeric(htx[:value]),
|
303
|
+
quote(htx[:contractAddress]),
|
304
|
+
quote(htx[:input]),
|
305
|
+
quote(htx[:type]),
|
306
|
+
numeric(htx[:gas]),
|
307
|
+
numeric(htx[:gasUsed]),
|
308
|
+
quote(htx[:traceId]),
|
309
|
+
integer(htx[:isError]),
|
310
|
+
integer(htx[:errCode])
|
311
|
+
].join(',')})"
|
312
|
+
end
|
313
|
+
|
386
314
|
# @param [Hash] htx transacao block etherscan
|
387
315
|
# @return [String] valores formatados nethi (block parte1)
|
388
316
|
def nethp_val(htx)
|
389
|
-
"(#{
|
390
|
-
"#{Integer(htx[:timeStamp])}," \
|
391
|
-
"cast('#{htx[:blockReward]}' as numeric)," \
|
392
|
-
"'#{htx[:iax]}')"
|
317
|
+
"(#{[integer(htx[:blockNumber]), integer(htx[:timeStamp]), numeric(htx[:blockReward]), quote(htx[:iax])].join(',')})"
|
393
318
|
end
|
394
319
|
|
395
|
-
# @example (see Apibc#block_es)
|
396
320
|
# @param [Hash] htx transacao withdrawals etherscan
|
397
321
|
# @return [String] valores formatados nethi (withdrawals parte1)
|
398
322
|
def nethw_val(htx)
|
399
|
-
"(#{
|
400
|
-
|
401
|
-
|
402
|
-
|
403
|
-
|
404
|
-
|
323
|
+
"(#{[
|
324
|
+
integer(htx[:withdrawalIndex]),
|
325
|
+
integer(htx[:validatorIndex]),
|
326
|
+
quote(htx[:address]),
|
327
|
+
numeric(htx[:amount]),
|
328
|
+
integer(htx[:blockNumber]),
|
329
|
+
integer(htx[:timestamp])
|
330
|
+
].join(',')})"
|
405
331
|
end
|
406
332
|
|
407
|
-
# @example (see Apibc#token_es)
|
408
333
|
# @param [Hash] hkx token event etherscan
|
409
334
|
# @return [String] valores formatados nethk (token parte1)
|
410
|
-
def nethk_val(
|
411
|
-
|
412
|
-
|
413
|
-
|
414
|
-
|
415
|
-
|
416
|
-
|
417
|
-
|
418
|
-
|
419
|
-
|
420
|
-
|
421
|
-
|
422
|
-
|
423
|
-
|
424
|
-
|
425
|
-
|
426
|
-
|
427
|
-
|
428
|
-
|
429
|
-
|
430
|
-
|
431
|
-
|
335
|
+
def nethk_val(htx)
|
336
|
+
"(#{[
|
337
|
+
integer(htx[:blockNumber]),
|
338
|
+
integer(htx[:timeStamp]),
|
339
|
+
quote(htx[:hash]),
|
340
|
+
integer(htx[:nonce]),
|
341
|
+
quote(htx[:blockHash]),
|
342
|
+
integer(htx[:transactionIndex]),
|
343
|
+
quote(htx[:from]),
|
344
|
+
quote(htx[:to]),
|
345
|
+
quote(htx[:iax]),
|
346
|
+
numeric(htx[:value]),
|
347
|
+
quote(htx[:tokenName]),
|
348
|
+
quote(htx[:tokenSymbol]),
|
349
|
+
integer(htx[:tokenDecimal]),
|
350
|
+
numeric(htx[:gas]),
|
351
|
+
numeric(htx[:gasPrice]),
|
352
|
+
numeric(htx[:gasUsed]),
|
353
|
+
quote(htx[:input]),
|
354
|
+
quote(htx[:contractAddress]),
|
355
|
+
integer(ops.dig(:h, htx[:blockNumber]))
|
356
|
+
].join(',')})"
|
432
357
|
end
|
433
358
|
|
434
359
|
# @example (see Apibc#ledger_gm)
|
435
360
|
# @param [Hash] hlx ledger greymass
|
436
361
|
# @return [String] valores formatados para insert eos (parte1)
|
437
|
-
def
|
438
|
-
act =
|
362
|
+
def neost_val(htx)
|
363
|
+
act = htx[:action_trace][:act]
|
439
364
|
dat = act[:data]
|
440
365
|
qtd = dat[:quantity].to_s
|
441
366
|
str = dat[:memo].inspect
|
442
|
-
"(#{
|
443
|
-
|
444
|
-
|
445
|
-
|
446
|
-
|
447
|
-
|
448
|
-
|
449
|
-
|
450
|
-
|
451
|
-
|
452
|
-
|
453
|
-
|
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(',')})"
|
454
382
|
end
|
455
383
|
|
456
384
|
# @param [Hash] htx trade bitcoinde
|
457
385
|
# @return [String] valores formatados det (trades parte1)
|
458
|
-
def
|
459
|
-
"(
|
460
|
-
|
461
|
-
|
462
|
-
|
463
|
-
|
464
|
-
|
465
|
-
|
466
|
-
|
467
|
-
|
468
|
-
|
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(',')})"
|
469
397
|
end
|
470
398
|
|
471
399
|
# @param [Hash] hlx ledger (deposits + withdrawals) bitcoinde
|
472
400
|
# @return [String] valores formatados del (ledger)
|
473
|
-
def
|
474
|
-
tip =
|
475
|
-
|
476
|
-
|
477
|
-
|
478
|
-
|
479
|
-
|
480
|
-
|
481
|
-
|
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(',')})"
|
482
413
|
end
|
483
414
|
|
484
415
|
# @param [String] idx identificador transacao
|
485
416
|
# @param [Hash] htx trade kraken
|
486
417
|
# @return [String] valores formatados ust (trades parte1)
|
487
|
-
def
|
488
|
-
|
489
|
-
|
490
|
-
|
491
|
-
|
492
|
-
|
493
|
-
|
494
|
-
|
495
|
-
|
496
|
-
|
497
|
-
|
498
|
-
|
499
|
-
|
500
|
-
|
501
|
-
|
502
|
-
|
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(',')})"
|
503
435
|
end
|
504
436
|
|
505
437
|
# @param idx (see ust_val)
|
506
438
|
# @param [Hash] hlx ledger kraken
|
507
439
|
# @return [String] valores formatados usl (ledger)
|
508
|
-
def
|
509
|
-
|
510
|
-
"('#{idx}'," \
|
511
|
-
"'#{hlx[:refid]}'," \
|
512
|
-
"PARSE_DATETIME('%s', '#{String(hlx[:time].round)}')," \
|
513
|
-
"'#{hlx[:type]}'," \
|
514
|
-
"#{acl.empty? ? 'null' : "'#{acl}'"}," \
|
515
|
-
"'#{hlx[:asset]}'," \
|
516
|
-
"cast(#{hlx[:amount]} as numeric)," \
|
517
|
-
"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(',')})"
|
518
442
|
end
|
519
443
|
end
|
520
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
|
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
|
@@ -108,7 +108,7 @@ module Cns
|
|
108
108
|
tx: filtrar_tx(acc, api.norml_es(acc)),
|
109
109
|
ix: filtrar_tx(acc, api.inter_es(acc)),
|
110
110
|
px: filtrar_px(acc, api.block_es(acc)),
|
111
|
-
wx:
|
111
|
+
wx: filtrar_wx(acc, api.withw_es(acc)),
|
112
112
|
kx: filtrar_tx(acc, api.token_es(acc))
|
113
113
|
}
|
114
114
|
end
|
@@ -153,30 +153,38 @@ module Cns
|
|
153
153
|
ary.map { |omp| omp.merge(itx: Integer(omp[:blockNumber]), iax: add) }
|
154
154
|
end
|
155
155
|
|
156
|
+
# @param add (see Apibc#norml_es)
|
157
|
+
# @param [Array<Hash>] ary lista blocks events
|
158
|
+
# @return [Array<Hash>] lista blocks events filtrada
|
159
|
+
def filtrar_wx(add, ary)
|
160
|
+
# adiciona chave indice itx & adiciona identificador da carteira iax
|
161
|
+
ary.map { |omp| omp.merge(itx: Integer(omp[:withdrawalIndex]), iax: add) }
|
162
|
+
end
|
163
|
+
|
156
164
|
# dt: Time.at(Integer(htx[:timeStamp])),
|
157
165
|
# @return [Array<Hash>] lista ordenada transacoes normais novas
|
158
166
|
def sortx
|
159
|
-
|
167
|
+
novnetht.sort { |ant, prx| ant[:srx] <=> prx[:srx] }
|
160
168
|
end
|
161
169
|
|
162
170
|
# @return [Array<Hash>] lista ordenada transacoes internas novas
|
163
171
|
def sorix
|
164
|
-
|
172
|
+
novnethi.sort { |ant, prx| ant[:srx] <=> prx[:srx] }
|
165
173
|
end
|
166
174
|
|
167
175
|
# @return [Array<Hash>] lista ordenada transacoes block novas
|
168
176
|
def sorpx
|
169
|
-
|
177
|
+
novnethp.sort { |ant, prx| ant[:itx] <=> prx[:itx] }
|
170
178
|
end
|
171
179
|
|
172
180
|
# @return [Array<Hash>] lista ordenada transacoes withdrawals novas
|
173
181
|
def sorwx
|
174
|
-
|
182
|
+
novnethw.sort { |ant, prx| ant[:itx] <=> prx[:itx] }
|
175
183
|
end
|
176
184
|
|
177
185
|
# @return [Array<Hash>] lista ordenada transacoes token novas
|
178
186
|
def sorkx
|
179
|
-
|
187
|
+
novnethk.sort { |ant, prx| ant[:srx] <=> prx[:srx] }
|
180
188
|
end
|
181
189
|
|
182
190
|
# @return [String] texto carteiras & transacoes & ajuste dias
|
@@ -339,9 +347,9 @@ module Cns
|
|
339
347
|
# @return [String] texto formatado transacao withdrawals etherscan
|
340
348
|
def formata_transacao_withw(htx)
|
341
349
|
format(
|
342
|
-
'%<vi>9i %<bn>
|
350
|
+
'%<vi>9i %<bn>10i %<dt>10.10s %<vl>10.6f',
|
343
351
|
vi: htx[:validatorIndex],
|
344
|
-
bn: htx[:
|
352
|
+
bn: htx[:withdrawalIndex],
|
345
353
|
dt: Time.at(Integer(htx[:timestamp])),
|
346
354
|
vl: (htx[:amount].to_d / (10**9)).round(10)
|
347
355
|
)
|
@@ -349,7 +357,7 @@ module Cns
|
|
349
357
|
|
350
358
|
# @return [String] texto transacoes normais
|
351
359
|
def mostra_transacao_norml
|
352
|
-
return unless ops[:v] &&
|
360
|
+
return unless ops[:v] && novnetht.count.positive?
|
353
361
|
|
354
362
|
puts("\ntx normal from to data valor")
|
355
363
|
sortx.each { |obj| puts(formata_transacao_norml(obj)) }
|
@@ -357,7 +365,7 @@ module Cns
|
|
357
365
|
|
358
366
|
# @return [String] texto transacoes internas
|
359
367
|
def mostra_transacao_inter
|
360
|
-
return unless ops[:v] &&
|
368
|
+
return unless ops[:v] && novnethi.count.positive?
|
361
369
|
|
362
370
|
puts("\ntx intern from to data valor")
|
363
371
|
sorix.each { |obj| puts(formata_transacao_norml(obj)) }
|
@@ -365,7 +373,7 @@ module Cns
|
|
365
373
|
|
366
374
|
# @return [String] texto transacoes block
|
367
375
|
def mostra_transacao_block
|
368
|
-
return unless ops[:v] &&
|
376
|
+
return unless ops[:v] && novnethp.count.positive?
|
369
377
|
|
370
378
|
puts("\ntx block address data valor")
|
371
379
|
sorpx.each { |obj| puts(formata_transacao_block(obj)) }
|
@@ -373,7 +381,7 @@ module Cns
|
|
373
381
|
|
374
382
|
# @return [String] texto transacoes token
|
375
383
|
def mostra_transacao_token
|
376
|
-
return unless ops[:v] &&
|
384
|
+
return unless ops[:v] && novnethk.count.positive?
|
377
385
|
|
378
386
|
puts("\ntx token from to data valor")
|
379
387
|
sorkx.each { |obj| puts(formata_transacao_token(obj)) }
|
@@ -381,16 +389,16 @@ module Cns
|
|
381
389
|
|
382
390
|
# @return [String] texto transacoes withdrawals
|
383
391
|
def mostra_transacao_withw
|
384
|
-
return unless ops[:v] &&
|
392
|
+
return unless ops[:v] && novnethw.count.positive?
|
385
393
|
|
386
|
-
puts("\nvalidator
|
394
|
+
puts("\nvalidator withdrawal data valor")
|
387
395
|
sorwx.each { |obj| puts(formata_transacao_withw(obj)) }
|
388
396
|
end
|
389
397
|
|
390
398
|
# @return [String] texto configuracao ajuste dias das transacoes (normais & token)
|
391
399
|
def mostra_configuracao_ajuste_dias
|
392
|
-
puts("\nstring ajuste dias transacoes normais\n-h=#{sortx.map { |obj| "#{obj[:blockNumber]}:0" }.join(' ')}") if
|
393
|
-
puts("\nstring ajuste dias transacoes token \n-h=#{sorkx.map { |obj| "#{obj[:blockNumber]}:0" }.join(' ')}") if
|
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?
|
394
402
|
end
|
395
403
|
end
|
396
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
|
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.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-
|
10
|
+
date: 2025-02-23 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: bundler
|