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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 886d7793a4350c696eb50c89d0259fabf533776974f7bb6babc37aaf3974ed83
4
- data.tar.gz: f6741d5fe4e7193f687e9629f5dee17f35dd33c2a395b43f10b83627ea0935cb
3
+ metadata.gz: c1bca1a698024e59b3f4e8d69775a26223730139af0e7b5a717c26512046ec06
4
+ data.tar.gz: a3d3734c9322ae42283f1871314c28864c536a24a23219474f3eab5ec97a90da
5
5
  SHA512:
6
- metadata.gz: 3c4b54a9b9cb3088ffb2dee3c4db1e504936aca124eedb9dfbcffafccf3484aad65c3cd71e9aa5670e8c669c5826aaba8594c301a043f9ed358b1463a65e6a88
7
- data.tar.gz: f32c986888ca8ee711f84151b92d92ba0106c136df35e0d7ae48ac0eba03b100fbc7f7914ccbbee2b419180938d8d0fbe20bdcf1be7f109fc38cf38a1d3e436b
6
+ metadata.gz: 0047d7643b0e402d6d059bf1f0e7b4fdc024ec8439929e5dc53fac26a5c617df4d0923fb3dca0e1188887006aaf89f78ee3770c402335ca39845fc8a098de250
7
+ data.tar.gz: 9bb7c6ad69b0635f9bc09304918dba12f5d7f0a97a4b1413a020ac5b704b1694ef3b3a854260bd7706f544233c2753fa3a3d26b950fe1b0b5f0da27f3585db6f
data/.rubocop.yml CHANGED
@@ -18,7 +18,7 @@ Metrics/AbcSize:
18
18
 
19
19
  # Formatting Rules
20
20
  Layout/LineLength:
21
- Max: 160
21
+ Max: 180
22
22
  AllowHeredoc: true
23
23
  AllowURI: true
24
24
 
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- cns (0.8.2)
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.8.3)
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.2-x86_64-linux-gnu)
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.1)
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[:status] == '1' ? response[:result] : []
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', { account_name: address, pos: pos, offset: 100 })
69
- batch = response[:actions] || []
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).body)
92
- rescue Faraday::Error, JSON::ParserError
93
- { status: '0', result: [] }
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[:status] == '1'
106
+ break unless response.fetch(:status, '0') == '1'
107
107
 
108
- batch = response[:result] || []
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 }).body)
120
- rescue Faraday::Error, JSON::ParserError
121
- nil
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(body)
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