cns 2.2.1 → 2.2.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/Gemfile.lock +5 -5
- data/lib/cns/apibc.rb +1 -1
- data/lib/cns/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0fd423ff5aef797f28a7b1d3411e13f72190d3aabc9ea3cf7c032c7a740f7994
|
|
4
|
+
data.tar.gz: 8dd12aeaa58fe4f0d093b65adab8fda9d5d23ea734f0c570abd1b9b121ceb1de
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a9a6d4023098513620daf8aa55d61b9f775e7f9e217f21af1d9703791b22b1ac11d4211f2a386a15464b5f893b554fc2db673066b43d6f72d0cf2b511827ec20
|
|
7
|
+
data.tar.gz: 7837d253c6474fd811f7dc63650e51e637324a7553687d81397c37bd304e1f03af8fb483b83ceff60129c98328cbf189ca60f14246f18fb94c06a9708d3a1ae5
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
cns (2.2.
|
|
4
|
+
cns (2.2.3)
|
|
5
5
|
curb
|
|
6
6
|
faraday
|
|
7
7
|
faraday-retry
|
|
@@ -88,7 +88,7 @@ GEM
|
|
|
88
88
|
google-cloud-core (1.9.0)
|
|
89
89
|
google-cloud-env (>= 1.0, < 3.a)
|
|
90
90
|
google-cloud-errors (~> 1.0)
|
|
91
|
-
google-cloud-env (2.
|
|
91
|
+
google-cloud-env (2.4.0)
|
|
92
92
|
base64 (~> 0.2)
|
|
93
93
|
faraday (>= 1.0, < 3.a)
|
|
94
94
|
google-cloud-errors (1.6.0)
|
|
@@ -165,7 +165,7 @@ GEM
|
|
|
165
165
|
reverse_markdown (3.0.2)
|
|
166
166
|
nokogiri
|
|
167
167
|
rexml (3.4.4)
|
|
168
|
-
rubocop (1.88.
|
|
168
|
+
rubocop (1.88.2)
|
|
169
169
|
json (~> 2.3)
|
|
170
170
|
language_server-protocol (~> 3.17.0.2)
|
|
171
171
|
lint_roller (~> 1.1.0)
|
|
@@ -212,7 +212,7 @@ GEM
|
|
|
212
212
|
yard (~> 0.9, >= 0.9.24)
|
|
213
213
|
yard-activesupport-concern (~> 0.0)
|
|
214
214
|
yard-solargraph (~> 0.1)
|
|
215
|
-
sorbet-runtime (0.6.
|
|
215
|
+
sorbet-runtime (0.6.13328)
|
|
216
216
|
sord (7.1.0)
|
|
217
217
|
commander (~> 5.0)
|
|
218
218
|
parlour (~> 9.1)
|
|
@@ -222,7 +222,7 @@ GEM
|
|
|
222
222
|
yard
|
|
223
223
|
stringio (3.2.0)
|
|
224
224
|
thor (1.5.0)
|
|
225
|
-
tilt (2.
|
|
225
|
+
tilt (2.8.0)
|
|
226
226
|
trailblazer-option (0.1.2)
|
|
227
227
|
tsort (0.2.0)
|
|
228
228
|
uber (0.1.0)
|
data/lib/cns/apibc.rb
CHANGED
|
@@ -8,7 +8,7 @@ require('json')
|
|
|
8
8
|
module Cns
|
|
9
9
|
# classe para acesso dados blockchains
|
|
10
10
|
class Apibc
|
|
11
|
-
ESPS =
|
|
11
|
+
ESPS = 1000 # Reduced Maximum Records Per Request on the Free API Tier
|
|
12
12
|
|
|
13
13
|
def initialize
|
|
14
14
|
@escn = bccn('https://api.etherscan.io')
|
data/lib/cns/version.rb
CHANGED