cns 0.8.2 → 0.8.4
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 +5 -4
- data/lib/cns/apibc.rb +26 -21
- data/lib/cns/apice.rb +103 -410
- data/lib/cns/bigquery.rb +141 -200
- data/lib/cns/bitcoinde.rb +0 -4
- data/lib/cns/etherscan.rb +17 -9
- data/lib/cns/greymass.rb +1 -5
- 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: c1bca1a698024e59b3f4e8d69775a26223730139af0e7b5a717c26512046ec06
|
4
|
+
data.tar.gz: a3d3734c9322ae42283f1871314c28864c536a24a23219474f3eab5ec97a90da
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0047d7643b0e402d6d059bf1f0e7b4fdc024ec8439929e5dc53fac26a5c617df4d0923fb3dca0e1188887006aaf89f78ee3770c402335ca39845fc8a098de250
|
7
|
+
data.tar.gz: 9bb7c6ad69b0635f9bc09304918dba12f5d7f0a97a4b1413a020ac5b704b1694ef3b3a854260bd7706f544233c2753fa3a3d26b950fe1b0b5f0da27f3585db6f
|
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.4)
|
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)
|
@@ -136,7 +137,7 @@ GEM
|
|
136
137
|
reverse_markdown (3.0.0)
|
137
138
|
nokogiri
|
138
139
|
rexml (3.4.1)
|
139
|
-
rubocop (1.72.
|
140
|
+
rubocop (1.72.2)
|
140
141
|
json (~> 2.3)
|
141
142
|
language_server-protocol (~> 3.17.0.2)
|
142
143
|
lint_roller (~> 1.1.0)
|
data/lib/cns/apibc.rb
CHANGED
@@ -12,15 +12,7 @@ module Cns
|
|
12
12
|
# @return [Array<Hash>] List of addresses with balances
|
13
13
|
def account_es(addresses)
|
14
14
|
response = etherscan_req('balancemulti', addresses.join(','), 1, tag: 'latest')
|
15
|
-
response
|
16
|
-
end
|
17
|
-
|
18
|
-
# Get EOS account information
|
19
|
-
# @param address [String] EOS account name
|
20
|
-
# @return [Hash] Account details with resources
|
21
|
-
def account_gm(address)
|
22
|
-
response = greymass_req('/v1/chain/get_account', { account_name: address })
|
23
|
-
response || { core_liquid_balance: 0, total_resources: { net_weight: 0, cpu_weight: 0 } }
|
15
|
+
response.fetch(:status, '0') == '1' ? response.fetch(:result, []) : []
|
24
16
|
end
|
25
17
|
|
26
18
|
# Get normal transactions for ETH address
|
@@ -58,6 +50,14 @@ module Cns
|
|
58
50
|
pag_etherscan_req('tokentx', address)
|
59
51
|
end
|
60
52
|
|
53
|
+
# Get EOS account information
|
54
|
+
# @param address [String] EOS account name
|
55
|
+
# @return [Hash] Account details with resources
|
56
|
+
def account_gm(address)
|
57
|
+
response = greymass_req('/v1/chain/get_account', account_name: address)
|
58
|
+
response.dig(:core_liquid_balance).to_d > 0 ? response : gm_erro
|
59
|
+
end
|
60
|
+
|
61
61
|
# Get complete transaction history for EOS account
|
62
62
|
# @param (see account_gm)
|
63
63
|
# @return [Array<Hash>] lista completa transacoes greymass
|
@@ -65,8 +65,8 @@ module Cns
|
|
65
65
|
actions = []
|
66
66
|
pos = 0
|
67
67
|
loop do
|
68
|
-
response = greymass_req('/v1/history/get_actions',
|
69
|
-
batch = response
|
68
|
+
response = greymass_req('/v1/history/get_actions', account_name: address, pos: pos, offset: 100)
|
69
|
+
batch = response.fetch(:actions, [])
|
70
70
|
actions += batch
|
71
71
|
break if batch.size < 100
|
72
72
|
|
@@ -88,9 +88,9 @@ module Cns
|
|
88
88
|
# Generic Etherscan API request handler
|
89
89
|
def etherscan_req(action, address, page = 1, params = {})
|
90
90
|
params = { module: 'account', action: action, address: address, page: page, apikey: ENV.fetch('ETHERSCAN_API_KEY') }.merge(params)
|
91
|
-
parse_json(connection('https://api.etherscan.io').get('/api', params)
|
92
|
-
rescue Faraday::Error
|
93
|
-
{ status: '0'
|
91
|
+
parse_json(connection('https://api.etherscan.io').get('/api', params))
|
92
|
+
rescue Faraday::Error
|
93
|
+
{ status: '0' }
|
94
94
|
end
|
95
95
|
|
96
96
|
# Generic method for paginated Etherscan requests
|
@@ -103,9 +103,9 @@ module Cns
|
|
103
103
|
page = 1
|
104
104
|
loop do
|
105
105
|
response = etherscan_req(action, address, page, params)
|
106
|
-
break unless response
|
106
|
+
break unless response.fetch(:status, '0') == '1'
|
107
107
|
|
108
|
-
batch = response
|
108
|
+
batch = response.fetch(:result, [])
|
109
109
|
results += batch
|
110
110
|
break if batch.size < 10_000
|
111
111
|
|
@@ -114,16 +114,21 @@ module Cns
|
|
114
114
|
results
|
115
115
|
end
|
116
116
|
|
117
|
+
# Generic Greymass API error
|
118
|
+
def gm_erro
|
119
|
+
{ core_liquid_balance: 0, total_resources: { net_weight: 0, cpu_weight: 0 } }
|
120
|
+
end
|
121
|
+
|
117
122
|
# Generic Greymass API request handler
|
118
123
|
def greymass_req(endpoint, payload)
|
119
|
-
parse_json((connection('https://eos.greymass.com').post(endpoint) { |req| req.body = payload.to_json })
|
120
|
-
rescue Faraday::Error
|
121
|
-
|
124
|
+
parse_json((connection('https://eos.greymass.com').post(endpoint) { |req| req.body = payload.to_json }))
|
125
|
+
rescue Faraday::Error
|
126
|
+
gm_erro
|
122
127
|
end
|
123
128
|
|
124
129
|
# Safe JSON parsing with error handling
|
125
|
-
def parse_json(
|
126
|
-
JSON.parse(body, symbolize_names: true)
|
130
|
+
def parse_json(res)
|
131
|
+
JSON.parse(res.body, symbolize_names: true) || {}
|
127
132
|
rescue JSON::ParserError
|
128
133
|
{}
|
129
134
|
end
|