cns 0.9.6 → 0.9.7

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: 60e46e5d964570303d66901fde56320d6102a12ff0f53495d420dc73fc5c5045
4
- data.tar.gz: fbc9a980fe5be810ee82c541ecbd769feae8ea87e84a9a2d80c356e0e8b313a0
3
+ metadata.gz: 809b82040355c90e5e2b99a47e643a9d2cd347a03469a0a34c738607d72d4e36
4
+ data.tar.gz: caa74260e481ce81ad556e36828e1eeb30021eb3e20e4b41c02d266986a99727
5
5
  SHA512:
6
- metadata.gz: 425413cbc19a0cbd77889e32a8cac2ba934cf32c9775e2c3bfd891d732f81c025b9f89b92e87211980b4f1e6a318a968fe369b46add18a3c133316b46ec64ceb
7
- data.tar.gz: 3cd4b50b92b93d31abe4795d1887a24dd358ba4d7aee75edb0ff2329a0ff5b722217547dc77b2aaa944b002c3d22b3107b4a561eea4c8209e8a0a6936ad0448f
6
+ metadata.gz: f6d46323b0b8b4970f5a67fe77530f396d1aa86fd09fb1b09a9f67e09f17198152599311c557ca71b96cfe2d290d18f43fead30d6317f44a8e059a9b5b85700e
7
+ data.tar.gz: 345f0ba90f40769b5a02099d307d5e1a0dfd03e3ff6c4642854c7999fe63b4a222462fab1e0f096dc0a6b46616d970ea20c0527d269f31c24c635ddfcb1d9d09
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- cns (0.9.6)
4
+ cns (0.9.7)
5
5
  curb
6
6
  faraday
7
7
  google-cloud-bigquery
data/lib/cns/apice.rb CHANGED
@@ -106,7 +106,8 @@ module Cns
106
106
  ary = []
107
107
  ofs = 0
108
108
  loop do
109
- sleep(ofs.zero? ? 0 : 2)
109
+ # Rate limiting for page requests (2s in Kraken)
110
+ sleep(@lpag - Time.now + 2) if @lpag && Time.now - @lpag < 2
110
111
  ops = {nonce: nnc, ofs: ofs}
111
112
  run_curl(@curl, "#{API[:us]}/#{uri}", method: 'POST', post_data: ops, headers: hus(uri, ops))
112
113
  bth = parse_json(@curl).fetch(:result, {}).fetch(key, []).map { |k, v| us_unif(k, v) }
@@ -114,6 +115,7 @@ module Cns
114
115
 
115
116
  ary.concat(bth)
116
117
  ofs += bth.size
118
+ @lpag = Time.now
117
119
  end
118
120
  ary
119
121
  end
@@ -200,6 +202,8 @@ module Cns
200
202
  md5 = ['GET', qde, @deky, non, Digest::MD5.hexdigest('')].join('#')
201
203
  mac = OpenSSL::HMAC.hexdigest('sha256', @desc, md5)
202
204
  {'X-API-KEY' => @deky, 'X-API-NONCE' => non.to_s, 'X-API-SIGNATURE' => mac}
205
+ rescue OpenSSL::HMACError => e
206
+ raise("HMAC generation failed: #{e.message}")
203
207
  end
204
208
 
205
209
  # Generate headers for Kraken HTTP requests
@@ -211,6 +215,8 @@ module Cns
211
215
  sha = ['/0/private/', qus, Digest::SHA256.digest("#{ops[:nonce]}#{URI.encode_www_form(ops)}")].join
212
216
  mac = OpenSSL::HMAC.digest('sha512', Base64.decode64(@ussc), sha)
213
217
  {'api-key' => @usky, 'api-sign' => Base64.strict_encode64(mac)}
218
+ rescue OpenSSL::HMACError => e
219
+ raise("HMAC generation failed: #{e.message}")
214
220
  end
215
221
  end
216
222
  end
data/lib/cns/bitcoinde.rb CHANGED
@@ -16,9 +16,7 @@ module Cns
16
16
  # @option pop [Hash] :h ({}) configuracao dias ajuste reposicionamento temporal
17
17
  # @option pop [Boolean] :v (false) mostra dados transacoes trades & ledger?
18
18
  # @option pop [Boolean] :t (false) mostra transacoes todas ou somente novas?
19
- # @return [Bitcoinde] API bitcoinde - obter saldos & transacoes trades e ledger
20
19
  def initialize(dad, pop)
21
- @api = Apice.new
22
20
  @bqd = dad
23
21
  @ops = pop.transform_keys(&:to_sym)
24
22
  end
@@ -153,6 +151,12 @@ module Cns
153
151
  hlx.map { |t| pdes(:time, t) }
154
152
  end
155
153
 
154
+ # Lazy Bitcoinde API Initialization
155
+ # @return [Bitcoinde] API - obter saldos & transacoes trades e ledger
156
+ def api
157
+ @api ||= Apice.new
158
+ end
159
+
156
160
  # @return [Hash] dados exchange bitcoinde - saldos & trades & deposits & withdrawals
157
161
  def ded
158
162
  @ded ||= {sl: pdea(api.account_de), tt: pdet(api.trades_de), tl: pdel(api.deposits_de + api.withdrawals_de)}
data/lib/cns/etherscan.rb CHANGED
@@ -53,9 +53,7 @@ module Cns
53
53
  # @param [Thor::CoreExt::HashWithIndifferentAccess] pop opcoes trabalho
54
54
  # @option pop [Hash] :h ({}) configuracao dias ajuste reposicionamento temporal
55
55
  # @option pop [Boolean] :v (false) mostra dados transacoes
56
- # @return [Etherscan] API etherscan - processar transacoes
57
56
  def initialize(dad, pop)
58
- @api = Apibc.new
59
57
  @bqd = dad
60
58
  @ops = pop.transform_keys(&:to_sym)
61
59
  end
@@ -299,6 +297,12 @@ module Cns
299
297
  }
300
298
  end
301
299
 
300
+ # Lazy Etherscan API Initialization
301
+ # @return [Etherscan] API - processar transacoes
302
+ def api
303
+ @api ||= Apibc.new
304
+ end
305
+
302
306
  # @return [Array<String>] lista enderecos
303
307
  def lax
304
308
  @lax ||= bqd[:wb].map { |o| o[:ax] }
data/lib/cns/greymass.rb CHANGED
@@ -11,22 +11,14 @@ module Cns
11
11
  # @return [Thor::CoreExt::HashWithIndifferentAccess] opcoes trabalho
12
12
  attr_reader :api, :bqd, :ops
13
13
 
14
- TT = {
15
- new: :novneost,
16
- format: :fol,
17
- header: "\nsequence num from to accao data valor moeda",
18
- sork: :itx,
19
- adjk: :itx
20
- }.freeze
14
+ TT = {sork: :itx, adjk: :itx}.freeze
21
15
 
22
16
  # @param [Hash] dad todos os dados bigquery
23
17
  # @param [Thor::CoreExt::HashWithIndifferentAccess] pop opcoes trabalho
24
18
  # @option pop [Hash] :h ({}) configuracao dias ajuste reposicionamento temporal
25
19
  # @option pop [Boolean] :v (false) mostra dados transacoes?
26
20
  # @option pop [Boolean] :t (false) mostra transacoes todas ou somente novas?
27
- # @return [Greymass] API greymass - processar transacoes
28
21
  def initialize(dad, pop)
29
- @api = Apibc.new
30
22
  @bqd = dad
31
23
  @ops = pop.transform_keys(&:to_sym)
32
24
  end
@@ -45,19 +37,17 @@ module Cns
45
37
 
46
38
  # mosta transacoes novas
47
39
  def mtransacoes_novas
48
- ntx = send(TT[:new])
49
- return unless ops[:v] && ntx.any?
40
+ return unless ops[:v] && novneost.any?
50
41
 
51
- puts(TT[:header])
52
- ntx.sort_by { |s| -s[TT[:sork]] }.each { |t| puts(send(TT[:format], t)) }
42
+ puts("\nsequence num from to accao data valor moeda")
43
+ novneost.sort_by { |s| -s[TT[:sork]] }.each { |t| puts(fol(t)) }
53
44
  end
54
45
 
55
46
  # mostra configuration text for adjusting days
56
47
  def mconfiguracao_ajuste_dias
57
- ntx = send(TT[:new])
58
- return unless ntx.any?
48
+ return unless novneost.any?
59
49
 
60
- puts("\nstring ajuste dias\n-h=#{ntx.sort_by { |s| -s[TT[:sork]] }.map { |t| "#{t[TT[:adjk]]}:0" }.join(' ')}")
50
+ puts("\nstring ajuste dias\n-h=#{novneost.sort_by { |s| -s[TT[:sork]] }.map { |t| "#{t[TT[:adjk]]}:0" }.join(' ')}")
61
51
  end
62
52
 
63
53
  # @param [Hash] hjn dados juntos bigquery & greymass
@@ -153,6 +143,12 @@ module Cns
153
143
  }
154
144
  end
155
145
 
146
+ # Lazy Greymass API Initialization
147
+ # @return [Greymass] API - processar transacoes
148
+ def api
149
+ @api ||= Apibc.new
150
+ end
151
+
156
152
  # @return [Array<Hash>] todos os dados greymass - saldos & transacoes
157
153
  def gmd
158
154
  @gmd ||= bqd[:wb].map { |o| bsgm(o) }
data/lib/cns/kraken.rb CHANGED
@@ -16,9 +16,7 @@ module Cns
16
16
  # @option pop [Hash] :h ({}) configuracao dias ajuste reposicionamento temporal
17
17
  # @option pop [Boolean] :v (false) mostra dados transacoes trades & ledger?
18
18
  # @option pop [Boolean] :t (false) mostra transacoes todas ou somente novas?
19
- # @return [Kraken] API kraken - obter saldos & transacoes trades e ledger
20
19
  def initialize(dad, pop)
21
- @api = Apice.new
22
20
  @bqd = dad
23
21
  @ops = pop.transform_keys(&:to_sym)
24
22
  end
@@ -136,6 +134,22 @@ module Cns
136
134
  hlx.map { |t| t.merge(asset: t[:asset].upcase, amount: t[:amount].to_d, fee: t[:fee].to_d) }
137
135
  end
138
136
 
137
+ # Lazy kraken API Initialization decorated with rate limiting logic
138
+ # @return [Kraken] API - obter saldos & transacoes trades e ledger
139
+ def api
140
+ @api ||=
141
+ begin
142
+ t = Apice.new
143
+ # Rate limiting to this specific instance (0.5s in Kraken)
144
+ t.define_singleton_method(:run_curl) do |curl, url, **options|
145
+ sleep(@lapi - Time.now + 0.5) if @lapi && Time.now - @lapi < 0.5
146
+ super(curl, url, **options)
147
+ @lapi = Time.now
148
+ end
149
+ t
150
+ end
151
+ end
152
+
139
153
  # @return [Hash] dados exchange kraken - saldos & transacoes trades e ledger
140
154
  def usd
141
155
  @usd ||= {sl: pusa(api.account_us), kt: pust(api.trades_us), kl: pusl(api.ledger_us)}
data/lib/cns/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Cns
4
- VERSION = '0.9.6'
4
+ VERSION = '0.9.7'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cns
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.6
4
+ version: 0.9.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hernâni Rodrigues Vaz