cns 0.8.10 → 0.9.1
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/Gemfile.lock +7 -4
- data/lib/cns/apibc.rb +24 -13
- data/lib/cns/apice.rb +80 -78
- data/lib/cns/etherscan.rb +59 -56
- data/lib/cns/greymass.rb +23 -10
- data/lib/cns/version.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: 4bda8e993fc38693b8934e9b077c7eb1e7f2f005eeaa011d3495417d921b7479
|
4
|
+
data.tar.gz: e4e7bbe97475f2c4f9022073c36d5773040e985aaabf23054b6e7706b88a57d9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 103f27e4ee78a762d99947a8a7d8c7686fd4a47b9c280ee6c23855e48864731eb42960352f6c759adb6498b1dbae39592148875140f036e2a962bdc558499ff8
|
7
|
+
data.tar.gz: d93225bc64141c49ec230467c52a54e6e52619c6fa65eed618f19e781981ebfe9a7adbc4b7634179d6c0b4a72ec5c38fc00e410de46b2612f322e7f1f93c3080
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
cns (0.
|
4
|
+
cns (0.9.1)
|
5
5
|
curb
|
6
6
|
faraday
|
7
7
|
google-cloud-bigquery
|
@@ -137,7 +137,7 @@ GEM
|
|
137
137
|
reverse_markdown (3.0.0)
|
138
138
|
nokogiri
|
139
139
|
rexml (3.4.1)
|
140
|
-
rubocop (1.
|
140
|
+
rubocop (1.73.1)
|
141
141
|
json (~> 2.3)
|
142
142
|
language_server-protocol (~> 3.17.0.2)
|
143
143
|
lint_roller (~> 1.1.0)
|
@@ -159,7 +159,7 @@ GEM
|
|
159
159
|
faraday (>= 0.17.5, < 3.a)
|
160
160
|
jwt (>= 1.5, < 3.0)
|
161
161
|
multi_json (~> 1.10)
|
162
|
-
solargraph (0.
|
162
|
+
solargraph (0.52.0)
|
163
163
|
backport (~> 1.2)
|
164
164
|
benchmark
|
165
165
|
bundler (~> 2.0)
|
@@ -177,6 +177,7 @@ GEM
|
|
177
177
|
thor (~> 1.0)
|
178
178
|
tilt (~> 2.0)
|
179
179
|
yard (~> 0.9, >= 0.9.24)
|
180
|
+
yard-solargraph (~> 0.1)
|
180
181
|
thor (1.3.2)
|
181
182
|
tilt (2.6.0)
|
182
183
|
trailblazer-option (0.1.2)
|
@@ -184,8 +185,10 @@ GEM
|
|
184
185
|
unicode-display_width (3.1.4)
|
185
186
|
unicode-emoji (~> 4.0, >= 4.0.4)
|
186
187
|
unicode-emoji (4.0.4)
|
187
|
-
uri (1.0.
|
188
|
+
uri (1.0.3)
|
188
189
|
yard (0.9.37)
|
190
|
+
yard-solargraph (0.1.0)
|
191
|
+
yard (~> 0.9)
|
189
192
|
zeitwerk (2.6.18)
|
190
193
|
|
191
194
|
PLATFORMS
|
data/lib/cns/apibc.rb
CHANGED
@@ -7,12 +7,20 @@ require('json')
|
|
7
7
|
module Cns
|
8
8
|
# classe para acesso dados blockchains
|
9
9
|
class Apibc
|
10
|
+
ESPS = 10_000
|
11
|
+
GMPS = 100
|
12
|
+
|
13
|
+
def initialize
|
14
|
+
@etherscan_conn = connection('https://api.etherscan.io')
|
15
|
+
@greymass_conn = connection('https://eos.greymass.com')
|
16
|
+
end
|
17
|
+
|
10
18
|
# Get account balances for multiple ETH addresses
|
11
19
|
# @param addresses [Array<String>] List of ETH addresses (max 20)
|
12
20
|
# @return [Array<Hash>] List of addresses with balances
|
13
21
|
def account_es(addresses)
|
14
22
|
response = etherscan_req('balancemulti', addresses.join(','), 1, tag: 'latest')
|
15
|
-
response
|
23
|
+
response[:status] == '1' ? response[:result] || [] : []
|
16
24
|
end
|
17
25
|
|
18
26
|
# Get normal transactions for ETH address
|
@@ -55,7 +63,7 @@ module Cns
|
|
55
63
|
# @return [Hash] Account details with resources
|
56
64
|
def account_gm(address)
|
57
65
|
response = greymass_req('/v1/chain/get_account', account_name: address)
|
58
|
-
response
|
66
|
+
response[:core_liquid_balance]&.to_d&.positive? ? response : gm_erro
|
59
67
|
end
|
60
68
|
|
61
69
|
# Get complete transaction history for EOS account
|
@@ -65,12 +73,12 @@ module Cns
|
|
65
73
|
actions = []
|
66
74
|
pos = 0
|
67
75
|
loop do
|
68
|
-
response = greymass_req('/v1/history/get_actions', account_name: address, pos: pos, offset:
|
69
|
-
batch = response
|
70
|
-
actions
|
71
|
-
break if batch.size <
|
76
|
+
response = greymass_req('/v1/history/get_actions', account_name: address, pos: pos, offset: GMPS)
|
77
|
+
batch = response[:actions] || []
|
78
|
+
actions.concat(batch)
|
79
|
+
break if batch.size < GMPS
|
72
80
|
|
73
|
-
pos +=
|
81
|
+
pos += GMPS
|
74
82
|
end
|
75
83
|
actions
|
76
84
|
end
|
@@ -80,7 +88,10 @@ module Cns
|
|
80
88
|
# Reusable Faraday connection
|
81
89
|
def connection(base_url)
|
82
90
|
Faraday.new(base_url) do |conn|
|
91
|
+
conn.request(:json) # Automatically encodes body as JSON
|
83
92
|
conn.headers = { content_type: 'application/json', accept: 'application/json', user_agent: 'blockchain-api-client' }
|
93
|
+
conn.options.timeout = 30
|
94
|
+
conn.options.open_timeout = 10
|
84
95
|
conn.adapter(Faraday.default_adapter)
|
85
96
|
end
|
86
97
|
end
|
@@ -88,7 +99,7 @@ module Cns
|
|
88
99
|
# Generic Etherscan API request handler
|
89
100
|
def etherscan_req(action, address, page = 1, params = {})
|
90
101
|
params = { module: 'account', action: action, address: address, page: page, apikey: ENV.fetch('ETHERSCAN_API_KEY') }.merge(params)
|
91
|
-
parse_json(
|
102
|
+
parse_json(@etherscan_conn.get('/api', params))
|
92
103
|
rescue Faraday::Error
|
93
104
|
{ status: '0' }
|
94
105
|
end
|
@@ -103,11 +114,11 @@ module Cns
|
|
103
114
|
page = 1
|
104
115
|
loop do
|
105
116
|
response = etherscan_req(action, address, page, params)
|
106
|
-
break unless response
|
117
|
+
break unless response[:status] == '1'
|
107
118
|
|
108
|
-
batch = response
|
109
|
-
results
|
110
|
-
break if batch.size <
|
119
|
+
batch = response[:result] || []
|
120
|
+
results.concat(batch)
|
121
|
+
break if batch.size < ESPS
|
111
122
|
|
112
123
|
page += 1
|
113
124
|
end
|
@@ -121,7 +132,7 @@ module Cns
|
|
121
132
|
|
122
133
|
# Generic Greymass API request handler
|
123
134
|
def greymass_req(endpoint, payload)
|
124
|
-
parse_json(
|
135
|
+
parse_json(@greymass_conn.post(endpoint) { |req| req.body = payload })
|
125
136
|
rescue Faraday::Error
|
126
137
|
gm_erro
|
127
138
|
end
|
data/lib/cns/apice.rb
CHANGED
@@ -11,133 +11,117 @@ module Cns
|
|
11
11
|
|
12
12
|
# classe para acesso dados centralized exchanges
|
13
13
|
class Apice
|
14
|
+
def initialize
|
15
|
+
@curl = Curl::Easy.new
|
16
|
+
@curl.timeout = 30
|
17
|
+
@curl.connect_timeout = 10
|
18
|
+
@curl.follow_location = true
|
19
|
+
@curl.ssl_verify_peer = true
|
20
|
+
end
|
21
|
+
|
14
22
|
# @return [Hash] saldos no bitcoinde
|
15
23
|
def account_de
|
16
24
|
uri = "#{API[:de]}/account"
|
17
|
-
|
25
|
+
run_curl(@curl, uri, headers: hde(uri))
|
26
|
+
parse_json(@curl).dig(:data, :balances) || {}
|
18
27
|
rescue Curl::Err::CurlError
|
19
28
|
{}
|
20
29
|
end
|
21
30
|
|
22
31
|
# @return [Array<Hash>] trades bitcoinde
|
23
32
|
def trades_de
|
24
|
-
|
25
|
-
ary = []
|
26
|
-
loop do
|
27
|
-
url = "#{API[:de]}/trades?#{URI.encode_www_form(state: 1, page: pag)}"
|
28
|
-
data = parse_json(Curl.get(url) { |obj| obj.headers = hde(url) })
|
29
|
-
ary += data.fetch(:trades, [])
|
30
|
-
break if data[:page][:current] >= data[:page][:last]
|
31
|
-
|
32
|
-
pag += 1
|
33
|
-
end
|
34
|
-
ary
|
33
|
+
pag_de_req("#{API[:de]}/trades", { state: 1 }, :trades)
|
35
34
|
rescue Curl::Err::CurlError
|
36
|
-
|
35
|
+
[]
|
37
36
|
end
|
38
37
|
|
39
38
|
# @return [Array<Hash>] depositos uniformizados bitcoinde
|
40
39
|
def deposits_de
|
41
|
-
|
42
|
-
ary = []
|
43
|
-
loop do
|
44
|
-
url = "#{API[:de]}/btc/deposits?#{URI.encode_www_form(state: 2, page: pag)}"
|
45
|
-
data = parse_json(Curl.get(url) { |obj| obj.headers = hde(url) })
|
46
|
-
ary += data.fetch(:deposits, []).map { |has| deposit_unif(has) }
|
47
|
-
break if data[:page][:current] >= data[:page][:last]
|
48
|
-
|
49
|
-
pag += 1
|
50
|
-
end
|
51
|
-
ary
|
40
|
+
pag_de_req("#{API[:de]}/btc/deposits", { state: 2 }, :deposits) { |i| i.map { |h| deposit_unif(h) } }
|
52
41
|
rescue Curl::Err::CurlError
|
53
|
-
|
54
|
-
end
|
55
|
-
|
56
|
-
# @return [Hash] deposito uniformizado bitcoinde
|
57
|
-
def deposit_unif(has)
|
58
|
-
{ add: has[:address], time: Time.parse(has[:created_at]), qt: has[:amount], txid: Integer(has[:deposit_id]) }.merge(tp: 'deposit', moe: 'btc', fee: '0')
|
42
|
+
[]
|
59
43
|
end
|
60
44
|
|
61
45
|
# @return [Array<Hash>] withdrawals uniformizadas bitcoinde
|
62
46
|
def withdrawals_de
|
63
|
-
|
64
|
-
pag = 1
|
65
|
-
loop do
|
66
|
-
url = "#{API[:de]}/btc/withdrawals?#{URI.encode_www_form(state: 1, page: pag)}"
|
67
|
-
data = parse_json(Curl.get(url) { |obj| obj.headers = hde(url) })
|
68
|
-
ary += data.fetch(:withdrawals, []).map { |has| withdrawal_unif(has) }
|
69
|
-
break if data[:page][:current] >= data[:page][:last]
|
70
|
-
|
71
|
-
pag += 1
|
72
|
-
end
|
73
|
-
ary
|
47
|
+
pag_de_req("#{API[:de]}/btc/withdrawals", { state: 1 }, :withdrawals) { |i| i.map { |h| withdrawal_unif(h) } }
|
74
48
|
rescue Curl::Err::CurlError
|
75
|
-
|
76
|
-
end
|
77
|
-
|
78
|
-
# @return [Hash] withdrawal uniformizada bitcoinde
|
79
|
-
def withdrawal_unif(has)
|
80
|
-
{
|
81
|
-
add: has[:address],
|
82
|
-
time: Time.parse(has[:transferred_at]),
|
83
|
-
qt: has[:amount],
|
84
|
-
fee: has[:network_fee],
|
85
|
-
txid: Integer(has[:withdrawal_id])
|
86
|
-
}.merge(tp: 'withdrawal', moe: 'btc')
|
49
|
+
[]
|
87
50
|
end
|
88
51
|
|
89
52
|
# @return [Hash] saldos kraken
|
90
53
|
def account_us
|
91
54
|
uri = 'Balance'
|
92
55
|
ops = { nonce: nnc }
|
93
|
-
|
56
|
+
run_curl(@curl, "#{API[:us]}/#{uri}", method: :post, post_data: ops, headers: hus(uri, ops))
|
57
|
+
parse_json(@curl).fetch(:result, {})
|
94
58
|
rescue Curl::Err::CurlError
|
95
59
|
{}
|
96
60
|
end
|
97
61
|
|
98
62
|
# @return [Hash] trades kraken
|
99
63
|
def trades_us
|
100
|
-
|
101
|
-
has = {}
|
102
|
-
ofs = 0
|
103
|
-
loop do
|
104
|
-
sleep(1)
|
105
|
-
ops = { nonce: nnc, ofs: ofs }
|
106
|
-
result = parse_json(Curl.post("#{API[:us]}/#{uri}", ops) { |hed| hed.headers = hus(uri, ops) }).fetch(:result, {})
|
107
|
-
break if result.fetch(:trades, []).empty?
|
108
|
-
|
109
|
-
has.merge!(result[:trades])
|
110
|
-
ofs += result[:trades].size
|
111
|
-
end
|
112
|
-
has
|
64
|
+
pag_us_req('TradesHistory', :trades)
|
113
65
|
rescue Curl::Err::CurlError
|
114
|
-
|
66
|
+
{}
|
115
67
|
end
|
116
68
|
|
117
69
|
# @return [Hash] ledger kraken
|
118
70
|
def ledger_us
|
119
|
-
|
71
|
+
pag_us_req('Ledgers', :ledger)
|
72
|
+
rescue Curl::Err::CurlError
|
73
|
+
{}
|
74
|
+
end
|
75
|
+
|
76
|
+
private
|
77
|
+
|
78
|
+
# Generic paginated request handler for Kraken
|
79
|
+
def pag_us_req(uri, key)
|
120
80
|
has = {}
|
121
81
|
ofs = 0
|
122
82
|
loop do
|
123
|
-
sleep(2)
|
83
|
+
sleep(ofs.zero? ? 0 : 2)
|
124
84
|
ops = { nonce: nnc, ofs: ofs }
|
125
|
-
|
126
|
-
|
85
|
+
run_curl(@curl, "#{API[:us]}/#{uri}", method: :post, post_data: ops, headers: hus(uri, ops))
|
86
|
+
batch = parse_json(@curl).fetch(:result, {}).fetch(key, [])
|
87
|
+
break if batch.empty?
|
127
88
|
|
128
|
-
has.merge!(
|
129
|
-
ofs +=
|
89
|
+
has.merge!(batch)
|
90
|
+
ofs += batch.size
|
130
91
|
end
|
131
92
|
has
|
132
|
-
rescue Curl::Err::CurlError
|
133
|
-
has
|
134
93
|
end
|
135
94
|
|
136
|
-
|
95
|
+
# Generic paginated request handler for Bitcoin.de
|
96
|
+
def pag_de_req(base_url, params, key)
|
97
|
+
ary = []
|
98
|
+
pag = 1
|
99
|
+
loop do
|
100
|
+
url = "#{base_url}?#{URI.encode_www_form(params.merge(page: pag))}"
|
101
|
+
run_curl(@curl, url, headers: hde(url))
|
102
|
+
result = parse_json(@curl)
|
103
|
+
batch = result.fetch(key, [])
|
104
|
+
ary.concat(block_given? ? yield(batch) : batch)
|
105
|
+
break if result[:page]&.[](:current)&.>= result[:page]&.[](:last)
|
106
|
+
|
107
|
+
pag += 1
|
108
|
+
end
|
109
|
+
ary
|
110
|
+
end
|
111
|
+
|
112
|
+
# Configure Curl object for request
|
113
|
+
def run_curl(curl, url, method: :get, post_data: nil, headers: {})
|
114
|
+
curl.reset
|
115
|
+
curl.url = url
|
116
|
+
curl.http(method == :post ? 'POST' : 'GET')
|
117
|
+
curl.headers = headers
|
118
|
+
curl.post_body = URI.encode_www_form(post_data) if post_data
|
119
|
+
curl.perform
|
120
|
+
end
|
137
121
|
|
138
122
|
# Safe JSON parsing with error handling
|
139
123
|
def parse_json(res)
|
140
|
-
JSON.parse(res.
|
124
|
+
JSON.parse(res.body_str, symbolize_names: true)
|
141
125
|
rescue JSON::ParserError
|
142
126
|
{}
|
143
127
|
end
|
@@ -147,6 +131,24 @@ module Cns
|
|
147
131
|
Integer(Float(Time.now) * 1e6)
|
148
132
|
end
|
149
133
|
|
134
|
+
# @return [Hash] deposito uniformizado bitcoinde
|
135
|
+
def deposit_unif(has)
|
136
|
+
{ add: has[:address], time: Time.parse(has[:created_at]), qt: has[:amount], txid: Integer(has[:deposit_id]) }.merge(tp: 'deposit', moe: 'btc', fee: '0')
|
137
|
+
end
|
138
|
+
|
139
|
+
# @return [Hash] withdrawal uniformizada bitcoinde
|
140
|
+
def withdrawal_unif(has)
|
141
|
+
{
|
142
|
+
add: has[:address],
|
143
|
+
time: Time.parse(has[:transferred_at]),
|
144
|
+
qt: has[:amount],
|
145
|
+
fee: has[:network_fee],
|
146
|
+
txid: Integer(has[:withdrawal_id]),
|
147
|
+
tp: 'withdrawal',
|
148
|
+
moe: 'btc'
|
149
|
+
}
|
150
|
+
end
|
151
|
+
|
150
152
|
# @param [String] qde query a incluir no pedido HTTP
|
151
153
|
# @param [Integer] non continually-increasing unsigned integer
|
152
154
|
# @return [Hash] headers necessarios para pedido HTTP da exchange bitcoinde
|
data/lib/cns/etherscan.rb
CHANGED
@@ -16,6 +16,44 @@ module Cns
|
|
16
16
|
# @return [Thor::CoreExt::HashWithIndifferentAccess] opcoes trabalho
|
17
17
|
attr_reader :ops
|
18
18
|
|
19
|
+
TT = {
|
20
|
+
normal: {
|
21
|
+
new: :novnetht,
|
22
|
+
sort_key: :srx,
|
23
|
+
format: :formata_tx_ti,
|
24
|
+
header: "\ntx normal from to data valor",
|
25
|
+
adjustment_key: :hash
|
26
|
+
},
|
27
|
+
internal: {
|
28
|
+
new: :novnethi,
|
29
|
+
sort_key: :srx,
|
30
|
+
format: :formata_tx_ti,
|
31
|
+
header: "\ntx intern from to data valor",
|
32
|
+
adjustment_key: :hash
|
33
|
+
},
|
34
|
+
block: {
|
35
|
+
new: :novnethp,
|
36
|
+
sort_key: :itx,
|
37
|
+
format: :formata_tx_block,
|
38
|
+
header: "\ntx block address data valor",
|
39
|
+
adjustment_key: :blockNumber
|
40
|
+
},
|
41
|
+
token: {
|
42
|
+
new: :novnethk,
|
43
|
+
sort_key: :srx,
|
44
|
+
format: :formata_tx_token,
|
45
|
+
header: "\ntx token from to data valor moeda",
|
46
|
+
adjustment_key: :hash
|
47
|
+
},
|
48
|
+
withdrawal: {
|
49
|
+
new: :novnethw,
|
50
|
+
sort_key: :itx,
|
51
|
+
format: :formata_tx_withw,
|
52
|
+
header: "\nwithdrawal validator data valor",
|
53
|
+
adjustment_key: :withdrawalIndex
|
54
|
+
}
|
55
|
+
}
|
56
|
+
|
19
57
|
# @param [Hash] dad todos os dados bigquery
|
20
58
|
# @param [Thor::CoreExt::HashWithIndifferentAccess] pop opcoes trabalho
|
21
59
|
# @option pop [Hash] :h ({}) configuracao dias ajuste reposicionamento temporal
|
@@ -33,11 +71,7 @@ module Cns
|
|
33
71
|
|
34
72
|
puts("\nid address etherscan bigquery")
|
35
73
|
dados.each { |obj| puts(formata_carteira_simples(obj)) }
|
36
|
-
|
37
|
-
mtx_inter
|
38
|
-
mtx_block
|
39
|
-
mtx_token
|
40
|
-
mtx_withw
|
74
|
+
mtransacoes_novas
|
41
75
|
mconfiguracao_ajuste_dias
|
42
76
|
end
|
43
77
|
|
@@ -47,11 +81,7 @@ module Cns
|
|
47
81
|
|
48
82
|
puts("\nid address etherscan tn ti tb tk tw bigquery tn ti tb tk tw")
|
49
83
|
dados.each { |obj| puts(formata_carteira(obj)) }
|
50
|
-
|
51
|
-
mtx_inter
|
52
|
-
mtx_block
|
53
|
-
mtx_token
|
54
|
-
mtx_withw
|
84
|
+
mtransacoes_novas
|
55
85
|
mconfiguracao_ajuste_dias
|
56
86
|
end
|
57
87
|
|
@@ -133,7 +163,7 @@ module Cns
|
|
133
163
|
max -= 2
|
134
164
|
ini = Integer(max / 2)
|
135
165
|
inf = max % 2
|
136
|
-
hid = bqd[:wb].
|
166
|
+
hid = bqd[:wb].find { |obj| obj[:ax] == add }
|
137
167
|
ndd = hid ? "#{hid[:id]}-#{add}" : add
|
138
168
|
"#{ndd[0, ini]}..#{ndd[-inf - ini..]}"
|
139
169
|
end
|
@@ -187,53 +217,25 @@ module Cns
|
|
187
217
|
format('%<bn>10i %<vi>9i %<dt>10.10s %<vl>10.6f', bn: htx[:withdrawalIndex], vi: htx[:validatorIndex], dt: htx[:timeStamp].strftime('%F'), vl: htx[:amount] / (10**9))
|
188
218
|
end
|
189
219
|
|
190
|
-
# @return [String]
|
191
|
-
def
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
sortx.each { |obj| puts(formata_tx_ti(obj)) }
|
196
|
-
end
|
197
|
-
|
198
|
-
# @return [String] texto transacoes internas
|
199
|
-
def mtx_inter
|
200
|
-
return unless ops[:v] && novnethi.any?
|
201
|
-
|
202
|
-
puts("\ntx intern from to data valor")
|
203
|
-
sorix.each { |obj| puts(formata_tx_ti(obj)) }
|
204
|
-
end
|
205
|
-
|
206
|
-
# @return [String] texto transacoes block
|
207
|
-
def mtx_block
|
208
|
-
return unless ops[:v] && novnethp.any?
|
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?
|
209
225
|
|
210
|
-
|
211
|
-
|
226
|
+
puts(cfg[:header])
|
227
|
+
ntx.sort_by { |s| -s[cfg[:sort_key]] }.each { |t| puts(send(cfg[:format], t)) }
|
228
|
+
end
|
212
229
|
end
|
213
230
|
|
214
|
-
# @return [String]
|
215
|
-
def mtx_token
|
216
|
-
return unless ops[:v] && novnethk.any?
|
217
|
-
|
218
|
-
puts("\ntx token from to data valor moeda")
|
219
|
-
sorkx.each { |obj| puts(formata_tx_token(obj)) }
|
220
|
-
end
|
221
|
-
|
222
|
-
# @return [String] texto transacoes withdrawals
|
223
|
-
def mtx_withw
|
224
|
-
return unless ops[:v] && novnethw.any?
|
225
|
-
|
226
|
-
puts("\nwithdrawal validator data valor")
|
227
|
-
sorwx.each { |obj| puts(formata_tx_withw(obj)) }
|
228
|
-
end
|
229
|
-
|
230
|
-
# @return [String] texto configuracao ajuste dias das transacoes (normais & token)
|
231
|
+
# @return [String] Configuration text for adjusting transaction days
|
231
232
|
def mconfiguracao_ajuste_dias
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
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
|
237
239
|
end
|
238
240
|
|
239
241
|
# @return [Array<String>] lista dos meus enderecos
|
@@ -248,7 +250,7 @@ module Cns
|
|
248
250
|
|
249
251
|
# @return [Array<Hash>] todos os dados juntos bigquery & etherscan
|
250
252
|
def dados
|
251
|
-
@dados ||= bqd[:wb].map { |
|
253
|
+
@dados ||= bqd[:wb].map { |b| bq_bc(b, bcd.find { |e| b[:ax] == e[:ax] }) }
|
252
254
|
end
|
253
255
|
|
254
256
|
def show_all?
|
@@ -320,9 +322,10 @@ module Cns
|
|
320
322
|
# @param [Hash] hbc dados etherscan - address, saldo & transacoes
|
321
323
|
# @return [Hash] dados juntos bigquery & etherscan
|
322
324
|
def bq_bc(wbq, hbc)
|
325
|
+
xbq = wbq[:ax]
|
323
326
|
{
|
324
327
|
id: wbq[:id],
|
325
|
-
ax: xbq
|
328
|
+
ax: xbq,
|
326
329
|
bs: wbq[:sl],
|
327
330
|
bt: bqd[:nt].select { |ont| ont[:iax].casecmp?(xbq) },
|
328
331
|
bi: bqd[:ni].select { |oni| oni[:iax].casecmp?(xbq) },
|
data/lib/cns/greymass.rb
CHANGED
@@ -25,6 +25,14 @@ module Cns
|
|
25
25
|
@ops = pop.transform_keys(&:to_sym)
|
26
26
|
end
|
27
27
|
|
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
|
+
|
28
36
|
# @return [String] texto carteiras & transacoes & ajuste dias
|
29
37
|
def mresumo
|
30
38
|
return unless dados.any?
|
@@ -73,19 +81,21 @@ module Cns
|
|
73
81
|
)
|
74
82
|
end
|
75
83
|
|
76
|
-
# @return [String]
|
84
|
+
# @return [String] Display new transactions based on verbose option
|
77
85
|
def mtransacoes_novas
|
78
|
-
|
86
|
+
ntx = send(TT[:new])
|
87
|
+
return unless ops[:v] && ntx.any?
|
79
88
|
|
80
|
-
puts(
|
81
|
-
|
89
|
+
puts(TT[:header])
|
90
|
+
ntx.sort_by { |s| -s[TT[:sort_key]] }.each { |t| puts(send(TT[:format], t)) }
|
82
91
|
end
|
83
92
|
|
84
93
|
# @return [String] texto configuracao ajuste dias das transacoes
|
85
94
|
def mconfiguracao_ajuste_dias
|
86
|
-
|
95
|
+
ntx = send(TT[:new])
|
96
|
+
return unless ntx.any?
|
87
97
|
|
88
|
-
puts("\nstring ajuste dias\n-h=#{
|
98
|
+
puts("\nstring ajuste dias\n-h=#{ntx.map { |t| "#{t[TT[:adjustment_key]]}:0" }.join(' ')}")
|
89
99
|
end
|
90
100
|
|
91
101
|
# @return [Array<Hash>] todos os dados greymass - saldos & transacoes
|
@@ -95,7 +105,7 @@ module Cns
|
|
95
105
|
|
96
106
|
# @return [Array<Hash>] todos os dados juntos bigquery & greymass
|
97
107
|
def dados
|
98
|
-
@dados ||= bqd[:wb].map { |
|
108
|
+
@dados ||= bqd[:wb].map { |b| bq_bc(b, bcd.find { |g| b[:ax] == g[:ax] }) }
|
99
109
|
end
|
100
110
|
|
101
111
|
def show_all?
|
@@ -156,10 +166,13 @@ module Cns
|
|
156
166
|
# @return [Array<Hash>] lista transacoes filtrada
|
157
167
|
def peost(add, ary)
|
158
168
|
ary.map do |omp|
|
169
|
+
act = omp[:action_trace][:act]
|
170
|
+
adt = act[:data]
|
171
|
+
qtd = adt[:quantity].to_s
|
159
172
|
omp.merge(
|
160
|
-
name:
|
161
|
-
from:
|
162
|
-
quantity:
|
173
|
+
name: act[:name],
|
174
|
+
from: adt[:from],
|
175
|
+
quantity: qtd.to_d,
|
163
176
|
account: act[:account],
|
164
177
|
to: adt[:to],
|
165
178
|
memo: String(adt[:memo]).gsub(/\p{C}/, ''), # remove Non-Printable Characters
|
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.
|
4
|
+
version: 0.9.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Hernâni Rodrigues Vaz
|
8
8
|
bindir: exe
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-
|
10
|
+
date: 2025-03-01 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: bundler
|