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/etherscan.rb
CHANGED
@@ -4,112 +4,125 @@ require('bigdecimal/util')
|
|
4
4
|
|
5
5
|
# @author Hernani Rodrigues Vaz
|
6
6
|
module Cns
|
7
|
-
# chaves a eliminar da API - resultado deve ser ignirado pois muda a cada pedido API feito
|
8
|
-
DL = %i[cumulativeGasUsed confirmations].freeze
|
9
|
-
|
10
7
|
# classe para processar transacoes do etherscan
|
11
8
|
class Etherscan
|
12
9
|
# @return [Apibc] API blockchains
|
13
|
-
attr_reader :api
|
14
10
|
# @return [Array<Hash>] todos os dados bigquery
|
15
|
-
attr_reader :bqd
|
16
11
|
# @return [Thor::CoreExt::HashWithIndifferentAccess] opcoes trabalho
|
17
|
-
attr_reader :ops
|
12
|
+
attr_reader :api, :bqd, :ops
|
18
13
|
|
19
14
|
TT = {
|
20
15
|
normal: {
|
21
16
|
new: :novnetht,
|
22
|
-
|
23
|
-
format: :formata_tx_ti,
|
17
|
+
format: :foti,
|
24
18
|
header: "\ntx normal from to data valor",
|
25
|
-
|
19
|
+
sork: :srx,
|
20
|
+
adjk: :hash
|
26
21
|
},
|
27
22
|
internal: {
|
28
23
|
new: :novnethi,
|
29
|
-
|
30
|
-
format: :formata_tx_ti,
|
24
|
+
format: :foti,
|
31
25
|
header: "\ntx intern from to data valor",
|
32
|
-
|
26
|
+
sork: :srx,
|
27
|
+
adjk: :hash
|
33
28
|
},
|
34
29
|
block: {
|
35
30
|
new: :novnethp,
|
36
|
-
|
37
|
-
format: :formata_tx_block,
|
31
|
+
format: :fop,
|
38
32
|
header: "\ntx block address data valor",
|
39
|
-
|
33
|
+
sork: :itx,
|
34
|
+
adjk: :blockNumber
|
40
35
|
},
|
41
36
|
token: {
|
42
37
|
new: :novnethk,
|
43
|
-
|
44
|
-
format: :formata_tx_token,
|
38
|
+
format: :fok,
|
45
39
|
header: "\ntx token from to data valor moeda",
|
46
|
-
|
40
|
+
sork: :srx,
|
41
|
+
adjk: :hash
|
47
42
|
},
|
48
43
|
withdrawal: {
|
49
44
|
new: :novnethw,
|
50
|
-
|
51
|
-
format: :formata_tx_withw,
|
45
|
+
format: :fow,
|
52
46
|
header: "\nwithdrawal validator data valor",
|
53
|
-
|
47
|
+
sork: :itx,
|
48
|
+
adjk: :withdrawalIndex
|
54
49
|
}
|
55
50
|
}
|
56
51
|
|
57
52
|
# @param [Hash] dad todos os dados bigquery
|
58
53
|
# @param [Thor::CoreExt::HashWithIndifferentAccess] pop opcoes trabalho
|
59
54
|
# @option pop [Hash] :h ({}) configuracao dias ajuste reposicionamento temporal
|
60
|
-
# @option pop [Boolean] :v (false) mostra dados transacoes
|
61
|
-
# @return [Etherscan] API etherscan - processar transacoes
|
55
|
+
# @option pop [Boolean] :v (false) mostra dados transacoes
|
56
|
+
# @return [Etherscan] API etherscan - processar transacoes
|
62
57
|
def initialize(dad, pop)
|
63
58
|
@api = Apibc.new
|
64
59
|
@bqd = dad
|
65
60
|
@ops = pop.transform_keys(&:to_sym)
|
66
61
|
end
|
67
62
|
|
68
|
-
#
|
63
|
+
# mostra resumo carteiras & transacoes & ajuste dias
|
69
64
|
def mresumo_simples
|
70
65
|
return unless dados.any?
|
71
66
|
|
72
67
|
puts("\nid address etherscan bigquery")
|
73
|
-
dados.each { |
|
68
|
+
dados.each { |o| puts(focs(o)) }
|
74
69
|
mtransacoes_novas
|
75
70
|
mconfiguracao_ajuste_dias
|
76
71
|
end
|
77
72
|
|
78
|
-
#
|
73
|
+
# mostra resumo carteiras & transacoes & ajuste dias (com contadores)
|
79
74
|
def mresumo
|
80
75
|
return unless dados.any?
|
81
76
|
|
82
77
|
puts("\nid address etherscan tn ti tb tk tw bigquery tn ti tb tk tw")
|
83
|
-
dados.each { |
|
78
|
+
dados.each { |o| puts(foct(o)) }
|
84
79
|
mtransacoes_novas
|
85
80
|
mconfiguracao_ajuste_dias
|
86
81
|
end
|
87
82
|
|
88
83
|
private
|
89
84
|
|
90
|
-
#
|
91
|
-
|
92
|
-
|
93
|
-
|
85
|
+
# mosta transacoes novas
|
86
|
+
def mtransacoes_novas
|
87
|
+
TT.each do |_, cfg|
|
88
|
+
ntx = send(cfg[:new])
|
89
|
+
next unless ops[:v] && ntx.any?
|
90
|
+
|
91
|
+
puts(cfg[:header])
|
92
|
+
ntx.sort_by { |s| -s[cfg[:sork]] }.each { |t| puts(send(cfg[:format], t)) }
|
93
|
+
end
|
94
94
|
end
|
95
95
|
|
96
|
-
#
|
97
|
-
|
98
|
-
|
99
|
-
|
96
|
+
# mostra configuration text for adjusting days
|
97
|
+
def mconfiguracao_ajuste_dias
|
98
|
+
TT.each do |typ, cfg|
|
99
|
+
ntx = send(cfg[:new])
|
100
|
+
next unless ntx.any?
|
101
|
+
|
102
|
+
puts("\najuste dias transacoes #{typ}\n-h=#{ntx.sort_by { |s| -s[cfg[:sork]] }.map { |t| "#{t[cfg[:adjk]]}:0" }.join(' ')}")
|
103
|
+
end
|
100
104
|
end
|
101
105
|
|
102
|
-
# @param
|
103
|
-
# @return [String] texto formatado
|
104
|
-
def
|
105
|
-
format(
|
106
|
+
# @param [Hash] hjn dados juntos bigquery & etherscan
|
107
|
+
# @return [String] texto formatado duma carteira
|
108
|
+
def focs(hjn)
|
109
|
+
format(
|
110
|
+
'%<s1>-6.6s %<s2>-42.42s %<v1>13.6f %<v2>13.6f %<ok>-3s',
|
111
|
+
s1: hjn[:id],
|
112
|
+
s2: hjn[:ax],
|
113
|
+
v1: hjn[:es],
|
114
|
+
v2: hjn[:bs],
|
115
|
+
ok: ok?(hjn) ? 'OK' : 'NOK'
|
116
|
+
)
|
106
117
|
end
|
107
118
|
|
108
|
-
# @param (see
|
109
|
-
# @return [String] texto formatado
|
110
|
-
def
|
119
|
+
# @param (see focs)
|
120
|
+
# @return [String] texto formatado duma carteira (com contadores)
|
121
|
+
def foct(hjn)
|
111
122
|
format(
|
112
|
-
'%<v1>11.4f %<n1>3i %<n2>2i %<n3>2i %<n4>2i %<w1>4i %<v2>11.4f %<n5>3i %<n6>2i %<n7>2i %<n8>2i %<w2>4i %<ok>-3s',
|
123
|
+
'%<s1>-6.6s %<s2>-10.10s %<v1>11.4f %<n1>3i %<n2>2i %<n3>2i %<n4>2i %<w1>4i %<v2>11.4f %<n5>3i %<n6>2i %<n7>2i %<n8>2i %<w2>4i %<ok>-3s',
|
124
|
+
s1: hjn[:id],
|
125
|
+
s2: foe1(hjn[:ax], 10),
|
113
126
|
v1: hjn[:es],
|
114
127
|
n1: hjn[:et].count,
|
115
128
|
n2: hjn[:ei].count,
|
@@ -126,25 +139,30 @@ module Cns
|
|
126
139
|
)
|
127
140
|
end
|
128
141
|
|
129
|
-
# @
|
142
|
+
# @param (see focs)
|
143
|
+
# @return [Boolean] check saldo & contadores ipwtk
|
130
144
|
def ok?(hjn)
|
131
145
|
oks?(hjn) && okipw?(hjn) && hjn[:bt].count == hjn[:et].count && hjn[:bk].count == hjn[:ek].count
|
132
146
|
end
|
133
147
|
|
148
|
+
# @param (see focs)
|
149
|
+
# @return [Boolean] check contadores ipw
|
134
150
|
def okipw?(hjn)
|
135
151
|
oks?(hjn) && hjn[:bi].count == hjn[:ei].count && hjn[:bp].count == hjn[:ep].count && hjn[:bw].count == hjn[:ew].count
|
136
152
|
end
|
137
153
|
|
138
|
-
# @
|
154
|
+
# @param (see focs)
|
155
|
+
# @return [Boolean] carteira tem transacoes novas (sim=NOK, nao=OK)?
|
139
156
|
def oks?(hjn)
|
140
157
|
hjn[:es].round(6) == hjn[:bs].round(6)
|
141
158
|
end
|
142
159
|
|
143
160
|
# @example ether address inicio..fim
|
144
161
|
# 0x10f3a0cf0b534c..c033cf32e8a03586
|
162
|
+
# @param [String] add endereco ETH
|
145
163
|
# @param [Integer] max chars a mostrar
|
146
164
|
# @return [String] endereco formatado
|
147
|
-
def
|
165
|
+
def foe1(add, max)
|
148
166
|
return 'erro' if max < 7
|
149
167
|
|
150
168
|
max -= 2
|
@@ -155,154 +173,59 @@ module Cns
|
|
155
173
|
|
156
174
|
# @example ether address inicio..fim
|
157
175
|
# me-app..4b437776403d
|
176
|
+
# @param add (see foe1)
|
158
177
|
# @param [Integer] max chars a mostrar
|
159
178
|
# @return [String] endereco formatado
|
160
|
-
def
|
179
|
+
def foe2(add, max)
|
161
180
|
return 'erro' if max < 7
|
162
181
|
|
163
182
|
max -= 2
|
164
183
|
ini = Integer(max / 2)
|
165
184
|
inf = max % 2
|
166
|
-
hid = bqd[:wb].find { |
|
185
|
+
hid = bqd[:wb].find { |o| o[:ax] == add }
|
167
186
|
ndd = hid ? "#{hid[:id]}-#{add}" : add
|
168
187
|
"#{ndd[0, ini]}..#{ndd[-inf - ini..]}"
|
169
188
|
end
|
170
189
|
|
171
|
-
# @
|
172
|
-
# @
|
173
|
-
|
174
|
-
def formata_tx_ti(htx)
|
190
|
+
# @param [Hash] htx transacao etherscan normal(t)/(i)nternal
|
191
|
+
# @return [String] texto formatado
|
192
|
+
def foti(htx)
|
175
193
|
format(
|
176
194
|
'%<hx>-29.29s %<fr>-15.15s %<to>-15.15s %<dt>10.10s %<vl>7.3f',
|
177
|
-
hx:
|
178
|
-
fr:
|
179
|
-
to:
|
195
|
+
hx: foe1(htx[:hash], 29),
|
196
|
+
fr: foe2(htx[:from], 15),
|
197
|
+
to: foe2(htx[:to], 15),
|
180
198
|
dt: htx[:timeStamp].strftime('%F'),
|
181
199
|
vl: htx[:value] / (10**18)
|
182
200
|
)
|
183
201
|
end
|
184
202
|
|
185
|
-
# @
|
186
|
-
# @
|
187
|
-
|
188
|
-
def formata_tx_token(hkx)
|
203
|
+
# @param [Hash] hkx transacao etherscan to(k)en
|
204
|
+
# @return [String] texto formatado
|
205
|
+
def fok(hkx)
|
189
206
|
format(
|
190
207
|
'%<hx>-20.20s %<fr>-15.15s %<to>-15.15s %<dt>10.10s %<vl>10.3f %<sy>-5.5s',
|
191
|
-
hx:
|
192
|
-
fr:
|
193
|
-
to:
|
208
|
+
hx: foe1(hkx[:hash], 20),
|
209
|
+
fr: foe2(hkx[:from], 15),
|
210
|
+
to: foe2(hkx[:to], 15),
|
194
211
|
dt: hkx[:timeStamp].strftime('%F'),
|
195
212
|
vl: hkx[:value] / (10**18),
|
196
213
|
sy: hkx[:tokenSymbol]
|
197
214
|
)
|
198
215
|
end
|
199
216
|
|
200
|
-
# @
|
201
|
-
# @
|
202
|
-
|
203
|
-
|
204
|
-
format(
|
205
|
-
'%<bn>9i %<fr>-41.41s %<dt>10.10s %<vl>17.6f',
|
206
|
-
bn: htx[:blockNumber],
|
207
|
-
fr: formata_enderec2(htx[:iax], 41),
|
208
|
-
dt: htx[:timeStamp].strftime('%F'),
|
209
|
-
vl: htx[:blockReward] / (10**18)
|
210
|
-
)
|
217
|
+
# @param [Hash] hpx transacao etherscan (p)roduced blocks
|
218
|
+
# @return [String] texto formatado
|
219
|
+
def fop(hpx)
|
220
|
+
format('%<bn>9i %<fr>-41.41s %<dt>10.10s %<vl>17.6f', bn: hpx[:blockNumber], fr: foe2(hpx[:iax], 41), dt: hpx[:timeStamp].strftime('%F'), vl: hpx[:blockReward] / (10**18))
|
211
221
|
end
|
212
222
|
|
213
|
-
# @
|
214
|
-
# @param [Hash] htx transacao withdrawals etherscan
|
223
|
+
# @param [Hash] hwx transacao etherscan (w)ithdrawals
|
215
224
|
# @return [String] texto formatado transacao withdrawals etherscan
|
216
|
-
def
|
217
|
-
format('%<bn>10i %<vi>9i %<dt>10.10s %<vl>10.6f', bn:
|
218
|
-
end
|
219
|
-
|
220
|
-
# @return [String] Display all new transactions based on verbose option
|
221
|
-
def mtransacoes_novas
|
222
|
-
TT.each do |_, cfg|
|
223
|
-
ntx = send(cfg[:new])
|
224
|
-
next unless ops[:v] && ntx.any?
|
225
|
-
|
226
|
-
puts(cfg[:header])
|
227
|
-
ntx.sort_by { |s| -s[cfg[:sort_key]] }.each { |t| puts(send(cfg[:format], t)) }
|
228
|
-
end
|
229
|
-
end
|
230
|
-
|
231
|
-
# @return [String] Configuration text for adjusting transaction days
|
232
|
-
def mconfiguracao_ajuste_dias
|
233
|
-
TT.each do |typ, cfg|
|
234
|
-
ntx = send(cfg[:new])
|
235
|
-
next unless ntx.any?
|
236
|
-
|
237
|
-
puts("\najuste dias transacoes #{typ}\n-h=#{ntx.map { |t| "#{t[cfg[:adjustment_key]]}:0" }.join(' ')}")
|
238
|
-
end
|
225
|
+
def fow(hwx)
|
226
|
+
format('%<bn>10i %<vi>9i %<dt>10.10s %<vl>10.6f', bn: hwx[:withdrawalIndex], vi: hwx[:validatorIndex], dt: hwx[:timeStamp].strftime('%F'), vl: hwx[:amount] / (10**9))
|
239
227
|
end
|
240
228
|
|
241
|
-
# @return [Array<String>] lista dos meus enderecos
|
242
|
-
def lax
|
243
|
-
@lax ||= bqd[:wb].map { |obj| obj[:ax] }
|
244
|
-
end
|
245
|
-
|
246
|
-
# @return [Array<Hash>] todos os dados etherscan - saldos & transacoes
|
247
|
-
def bcd
|
248
|
-
@bcd ||= api.account_es(lax).map { |obj| base_bc(obj) }
|
249
|
-
end
|
250
|
-
|
251
|
-
# @return [Array<Hash>] todos os dados juntos bigquery & etherscan
|
252
|
-
def dados
|
253
|
-
@dados ||= bqd[:wb].map { |b| bq_bc(b, bcd.find { |e| b[:ax] == e[:ax] }) }
|
254
|
-
end
|
255
|
-
|
256
|
-
def show_all?
|
257
|
-
ops[:t] || false
|
258
|
-
end
|
259
|
-
|
260
|
-
def bqidt
|
261
|
-
@bqidt ||= show_all? ? [] : (bqd[:nt]&.map { |i| i[:itx] } || [])
|
262
|
-
end
|
263
|
-
|
264
|
-
# @return [Array<Integer>] lista indices transacoes novas
|
265
|
-
def idt
|
266
|
-
@idt ||= bcd.map { |o| o[:tx].map { |i| i[:itx] } }.flatten - bqidt
|
267
|
-
end
|
268
|
-
|
269
|
-
def bqidi
|
270
|
-
@bqidi ||= show_all? ? [] : (bqd[:ni]&.map { |i| i[:itx] } || [])
|
271
|
-
end
|
272
|
-
|
273
|
-
# @return [Array<Integer>] lista indices transacoes novas
|
274
|
-
def idi
|
275
|
-
@idi ||= bcd.map { |o| o[:ix].map { |i| i[:itx] } }.flatten - bqidi
|
276
|
-
end
|
277
|
-
|
278
|
-
def bqidp
|
279
|
-
@bqidp ||= show_all? ? [] : (bqd[:np]&.map { |i| i[:itx] } || [])
|
280
|
-
end
|
281
|
-
|
282
|
-
# @return [Array<Integer>] lista indices transacoes novas
|
283
|
-
def idp
|
284
|
-
@idp ||= bcd.map { |o| o[:px].map { |i| i[:itx] } }.flatten - bqidp
|
285
|
-
end
|
286
|
-
|
287
|
-
def bqidw
|
288
|
-
@bqidw ||= show_all? ? [] : (bqd[:nw]&.map { |i| i[:itx] } || [])
|
289
|
-
end
|
290
|
-
|
291
|
-
# @return [Array<Integer>] lista indices transacoes novas
|
292
|
-
def idw
|
293
|
-
@idw ||= bcd.map { |o| o[:wx].map { |i| i[:itx] } }.flatten - bqidw
|
294
|
-
end
|
295
|
-
|
296
|
-
def bqidk
|
297
|
-
@bqidk ||= show_all? ? [] : (bqd[:nk]&.map { |i| i[:itx] } || [])
|
298
|
-
end
|
299
|
-
|
300
|
-
# @return [Array<Integer>] lista indices transacoes novas
|
301
|
-
def idk
|
302
|
-
@idk ||= bcd.map { |o| o[:kx].map { |i| i[:itx] } }.flatten - bqidk
|
303
|
-
end
|
304
|
-
|
305
|
-
# @example (see Apibc#account_es)
|
306
229
|
# @param [Hash] abc account etherscan
|
307
230
|
# @return [Hash] dados etherscan - address, saldo & transacoes
|
308
231
|
def base_bc(abc)
|
@@ -341,80 +264,126 @@ module Cns
|
|
341
264
|
}
|
342
265
|
end
|
343
266
|
|
344
|
-
|
345
|
-
|
346
|
-
@novnetht ||= bcd.map { |obc| obc[:tx].select { |obj| idt.include?(obj[:itx]) } }.flatten.uniq { |itm| itm[:itx] }
|
267
|
+
def show_all?
|
268
|
+
ops[:t] || false
|
347
269
|
end
|
348
270
|
|
349
|
-
# @
|
350
|
-
|
351
|
-
|
271
|
+
# @param [Hash] htx transacao
|
272
|
+
# @return [Hash] transaccao filtrada
|
273
|
+
def pess(htx)
|
274
|
+
tym = Integer(htx[:timeStamp])
|
275
|
+
htx.merge(srx: tym, timeStamp: Time.at(tym))
|
352
276
|
end
|
353
277
|
|
354
|
-
# @
|
355
|
-
|
356
|
-
|
278
|
+
# @param add (see foe1)
|
279
|
+
# @param [Array<Hash>] ary lista transacoes normal(t)/(i)nternal/to(k)en
|
280
|
+
# @return [Array<Hash>] lista transacoes filtrada
|
281
|
+
def ftik(add, ary)
|
282
|
+
ary.map { |o| pess(o).merge(itx: String(o[:hash]), iax: add, value: o[:value].to_d) }
|
357
283
|
end
|
358
284
|
|
359
|
-
# @
|
360
|
-
|
361
|
-
|
285
|
+
# @param add (see foe1)
|
286
|
+
# @param [Array<Hash>] ary lista transacoes (p)roduced blocks
|
287
|
+
# @return [Array<Hash>] lista transacoes filtrada
|
288
|
+
def fppp(add, ary)
|
289
|
+
ary.map { |o| o.merge(itx: Integer(o[:blockNumber]), iax: add, blockReward: o[:blockReward].to_d, timeStamp: Time.at(Integer(o[:timeStamp]))) }
|
362
290
|
end
|
363
291
|
|
364
|
-
# @
|
365
|
-
|
366
|
-
|
292
|
+
# @param add (see foe1)
|
293
|
+
# @param [Array<Hash>] ary lista transacoes (w)ithdrawals
|
294
|
+
# @return [Array<Hash>] lista transacoes filtrada
|
295
|
+
def fwww(add, ary)
|
296
|
+
ary.map { |o| o.merge(itx: Integer(o[:withdrawalIndex]), iax: add, amount: o[:amount].to_d, timeStamp: Time.at(Integer(o[:timestamp]))) }
|
367
297
|
end
|
368
298
|
|
369
|
-
# @return [Array<
|
370
|
-
def
|
371
|
-
|
299
|
+
# @return [Array<String>] lista enderecos
|
300
|
+
def lax
|
301
|
+
@lax ||= bqd[:wb].map { |o| o[:ax] }
|
372
302
|
end
|
373
303
|
|
374
|
-
# @return [Array<Hash>]
|
375
|
-
def
|
376
|
-
|
304
|
+
# @return [Array<Hash>] todos os dados etherscan - saldos & transacoes
|
305
|
+
def bcd
|
306
|
+
@bcd ||= api.account_es(lax).map { |o| base_bc(o) }
|
377
307
|
end
|
378
308
|
|
379
|
-
# @return [Array<Hash>]
|
380
|
-
def
|
381
|
-
|
309
|
+
# @return [Array<Hash>] todos os dados juntos bigquery & etherscan
|
310
|
+
def dados
|
311
|
+
@dados ||= bqd[:wb].map { |b| bq_bc(b, bcd.find { |e| b[:ax] == e[:ax] }) }
|
382
312
|
end
|
383
313
|
|
384
|
-
# @return [Array<
|
385
|
-
def
|
386
|
-
|
314
|
+
# @return [Array<Integer>] indices transacoes bigquery
|
315
|
+
def bqidt
|
316
|
+
@bqidt ||= show_all? ? [] : (bqd[:nt]&.map { |i| i[:itx] } || [])
|
387
317
|
end
|
388
318
|
|
389
|
-
# @return [Array<
|
390
|
-
def
|
391
|
-
|
319
|
+
# @return [Array<Integer>] indices transacoes bigquery
|
320
|
+
def bqidi
|
321
|
+
@bqidi ||= show_all? ? [] : (bqd[:ni]&.map { |i| i[:itx] } || [])
|
392
322
|
end
|
393
323
|
|
394
|
-
|
395
|
-
|
396
|
-
|
324
|
+
# @return [Array<Integer>] indices transacoes bigquery
|
325
|
+
def bqidp
|
326
|
+
@bqidp ||= show_all? ? [] : (bqd[:np]&.map { |i| i[:itx] } || [])
|
397
327
|
end
|
398
328
|
|
399
|
-
# @
|
400
|
-
|
401
|
-
|
402
|
-
def ftik(add, ary)
|
403
|
-
ary.map { |o| pess(o).merge(itx: String(o[:hash]), iax: add, value: o[:value].to_d) }
|
329
|
+
# @return [Array<Integer>] indices transacoes bigquery
|
330
|
+
def bqidw
|
331
|
+
@bqidw ||= show_all? ? [] : (bqd[:nw]&.map { |i| i[:itx] } || [])
|
404
332
|
end
|
405
333
|
|
406
|
-
# @
|
407
|
-
|
408
|
-
|
409
|
-
def fppp(add, ary)
|
410
|
-
ary.map { |o| o.merge(itx: Integer(o[:blockNumber]), iax: add, blockReward: o[:blockReward].to_d, timeStamp: Time.at(Integer(o[:timeStamp]))) }
|
334
|
+
# @return [Array<Integer>] indices transacoes bigquery
|
335
|
+
def bqidk
|
336
|
+
@bqidk ||= show_all? ? [] : (bqd[:nk]&.map { |i| i[:itx] } || [])
|
411
337
|
end
|
412
338
|
|
413
|
-
# @
|
414
|
-
|
415
|
-
|
416
|
-
|
417
|
-
|
339
|
+
# @return [Array<Integer>] indices transacoes novas (etherscan - bigquery)
|
340
|
+
def idt
|
341
|
+
@idt ||= bcd.map { |o| o[:tx].map { |i| i[:itx] } }.flatten - bqidt
|
342
|
+
end
|
343
|
+
|
344
|
+
# @return [Array<Integer>] indices transacoes novas (etherscan - bigquery)
|
345
|
+
def idi
|
346
|
+
@idi ||= bcd.map { |o| o[:ix].map { |i| i[:itx] } }.flatten - bqidi
|
347
|
+
end
|
348
|
+
|
349
|
+
# @return [Array<Integer>] indices transacoes novas (etherscan - bigquery)
|
350
|
+
def idp
|
351
|
+
@idp ||= bcd.map { |o| o[:px].map { |i| i[:itx] } }.flatten - bqidp
|
352
|
+
end
|
353
|
+
|
354
|
+
# @return [Array<Integer>] indices transacoes novas (etherscan - bigquery)
|
355
|
+
def idw
|
356
|
+
@idw ||= bcd.map { |o| o[:wx].map { |i| i[:itx] } }.flatten - bqidw
|
357
|
+
end
|
358
|
+
|
359
|
+
# @return [Array<Integer>] indices transacoes novas (etherscan - bigquery)
|
360
|
+
def idk
|
361
|
+
@idk ||= bcd.map { |o| o[:kx].map { |i| i[:itx] } }.flatten - bqidk
|
362
|
+
end
|
363
|
+
|
364
|
+
# @return [Array<Hash>] lista transacoes normais novas
|
365
|
+
def novnetht
|
366
|
+
@novnetht ||= bcd.map { |o| o[:tx].select { |t| idt.include?(t[:itx]) } }.flatten.uniq { |i| i[:itx] }
|
367
|
+
end
|
368
|
+
|
369
|
+
# @return [Array<Hash>] lista transacoes internas novas
|
370
|
+
def novnethi
|
371
|
+
@novnethi ||= bcd.map { |o| o[:ix].select { |t| idi.include?(t[:itx]) } }.flatten.uniq { |i| i[:itx] }
|
372
|
+
end
|
373
|
+
|
374
|
+
# @return [Array<Hash>] lista transacoes block novas
|
375
|
+
def novnethp
|
376
|
+
@novnethp ||= bcd.map { |o| o[:px].select { |t| idp.include?(t[:itx]) } }.flatten.uniq { |i| i[:itx] }
|
377
|
+
end
|
378
|
+
|
379
|
+
# @return [Array<Hash>] lista transacoes withdrawals novas
|
380
|
+
def novnethw
|
381
|
+
@novnethw ||= bcd.map { |o| o[:wx].select { |t| idw.include?(t[:itx]) } }.flatten.uniq { |i| i[:itx] }
|
382
|
+
end
|
383
|
+
|
384
|
+
# @return [Array<Hash>] lista transacoes token novas
|
385
|
+
def novnethk
|
386
|
+
@novnethk ||= bcd.map { |o| o[:kx].select { |t| idk.include?(t[:itx]) } }.flatten.uniq { |i| i[:itx] }
|
418
387
|
end
|
419
388
|
end
|
420
389
|
end
|