binance 1.0.1 → 1.1.0

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: c0df2c795a3e1a090f1e8564f122caa6a79e3b47200917e45d12c7dd876e205b
4
- data.tar.gz: 2e34bd7c5c0d2856a08fea5b481e4d006581b13b66051ee82423f430d6ca42de
3
+ metadata.gz: e1e3fdefa1dfe10fec4497425bcdb90182663fb7e8ad9c427d34c8234a367ceb
4
+ data.tar.gz: 0c078f27b2939ffd76a39bb3deaf83b63d22f173aa350fdf522a1a13693f7846
5
5
  SHA512:
6
- metadata.gz: 6379b10b0e6cd938757bfa0fa306af1e2da96c8a276e2a6b763d5cdec755bd7f86d3d12438c69d5e47857c2111eef68b106d4bb8a0915cde121ae03def385e06
7
- data.tar.gz: 517d2764d10d7cefaed8e56936211d91a309c6ecc273010862e62304507c6a8aac912f23b27d1e645b1852fe9111a0b0bb2df609547140072a4dcdee9e6aa7f7
6
+ metadata.gz: 463dd42801d3db067f0a33e43db2fe416fec212778d1acd0a51a8102c45607c6c42272556f74a8f9127eec8ab7a6382dea15620a5461919b9a90b5166b10629e
7
+ data.tar.gz: b3d38b652f02b07debdece3c13b1b4a02057e201b7c7a4f9353270e12537b22c5a0715b8f2cf8c5c2c1bce77b5d94706675025ec0ba59af34f57528203c0eb32
File without changes
data/bin/setup CHANGED
File without changes
@@ -1,4 +1,3 @@
1
-
2
1
  require 'binance/version'
3
2
  require 'binance/client/rest'
4
3
  require 'binance/client/websocket'
@@ -1,4 +1,3 @@
1
-
2
1
  require 'faraday'
3
2
 
4
3
  require_relative 'rest/sign_request_middleware'
@@ -1,4 +1,3 @@
1
-
2
1
  require 'faraday_middleware'
3
2
 
4
3
  module Binance
@@ -1,4 +1,3 @@
1
-
2
1
  module Binance
3
2
  module Client
4
3
  class REST
@@ -7,7 +6,6 @@ module Binance
7
6
  ping: 'v1/ping',
8
7
  time: 'v1/time',
9
8
  exchange_info: 'v1/exchangeInfo',
10
- products: '/exchange/public/products',
11
9
  depth: 'v1/depth',
12
10
  trades: 'v1/trades',
13
11
  historical_trades: 'v1/historicalTrades',
@@ -33,7 +31,8 @@ module Binance
33
31
  deposit_address: 'v3/depositAddress.html',
34
32
  account_status: 'v3/accountStatus.html',
35
33
  system_status: 'v3/systemStatus.html',
36
- withdraw_fee: 'v3/withdrawFee.html'
34
+ withdraw_fee: 'v3/withdrawFee.html',
35
+ dust_log: 'v3/userAssetDribbletLog.html'
37
36
  }.freeze
38
37
  end
39
38
  end
@@ -1,4 +1,3 @@
1
-
2
1
  module Binance
3
2
  module Client
4
3
  class REST
@@ -13,9 +12,6 @@ module Binance
13
12
  # #exchange_info
14
13
  { name: :exchange_info, client: :public,
15
14
  action: :get, endpoint: :exchange_info },
16
- # #products
17
- { name: :products, client: :public,
18
- action: :get, endpoint: :products },
19
15
  # #depth
20
16
  { name: :depth, client: :public,
21
17
  action: :get, endpoint: :depth },
@@ -97,7 +93,10 @@ module Binance
97
93
  action: :get, endpoint: :system_status },
98
94
  # #withdraw_fee
99
95
  { name: :withdraw_fee, client: :withdraw,
100
- action: :get, endpoint: :withdraw_fee }
96
+ action: :get, endpoint: :withdraw_fee },
97
+ # dust_log
98
+ { name: :dust_log, client: :withdraw,
99
+ action: :get, endpoint: :dust_log }
101
100
  ].freeze
102
101
  end
103
102
  end
@@ -1,4 +1,3 @@
1
-
2
1
  module Binance
3
2
  module Client
4
3
  class REST
@@ -1,4 +1,3 @@
1
-
2
1
  require 'date'
3
2
 
4
3
  module Binance
@@ -1,4 +1,3 @@
1
-
2
1
  require 'faye/websocket'
3
2
 
4
3
  module Binance
@@ -1,4 +1,3 @@
1
-
2
1
  module Binance
3
- VERSION = '1.0.1'.freeze
2
+ VERSION = '1.1.0'.freeze
4
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: binance
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Charles Ray Shisler III
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-03-21 00:00:00.000000000 Z
11
+ date: 2018-06-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -132,7 +132,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
132
132
  version: '0'
133
133
  requirements: []
134
134
  rubyforge_project:
135
- rubygems_version: 2.7.3
135
+ rubygems_version: 2.7.6
136
136
  signing_key:
137
137
  specification_version: 4
138
138
  summary: API Wrapper for the Binance cryptocurrency exchange.