binance-ruby 1.2.9 → 1.3.2
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/lib/binance/api/configuration.rb +1 -1
- data/lib/binance/api/request.rb +2 -1
- data/lib/binance/api/version.rb +1 -1
- data/lib/binance/websocket.rb +22 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e4de51ede5570a5a06e9b4fa6714e7924eea9c161b6d369bfd017b7221221c5f
|
4
|
+
data.tar.gz: ba35f9071516ac5a1454c381fc1b04519b44f858f06389365aef938c759922ed
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0cc40f3549aa3e01c58b83092ff681fa5e53a66bfdf0f03debdf9c506ac8d99d8345cdccc268101a0a14b8a2dc252fc160506000206089b4f58604e939a67de3
|
7
|
+
data.tar.gz: a96ce7998043da556176f95cba44029e50af747c77b1e739e1c0c51010b5dc1601e76cb0f598da5167872a7c7321ee2d1b77a65d6b264990e2d86d9a26312d7d
|
@@ -10,7 +10,7 @@ module Binance
|
|
10
10
|
|
11
11
|
def api_key(type: nil)
|
12
12
|
raise Error.new(message: "invalid api_key type: #{type}.") unless type.nil? || api_key_types.include?(type)
|
13
|
-
instance_api_key(type: type) || ENV["BINANCE_#{type.to_s.humanize.upcase}_API_KEY"] || ENV["BINANCE_API_KEY"]
|
13
|
+
instance_api_key(type: type) || ENV["BINANCE_#{type.to_s.humanize.upcase}_API_KEY"] || instance_api_key || ENV["BINANCE_API_KEY"]
|
14
14
|
end
|
15
15
|
|
16
16
|
def tld
|
data/lib/binance/api/request.rb
CHANGED
@@ -5,7 +5,8 @@ module Binance
|
|
5
5
|
class << self
|
6
6
|
def send!(api_key_type: :none, headers: {}, method: :get, path: "/", params: {}, security_type: :none, tld: Configuration.tld, api_key: nil, api_secret_key: nil)
|
7
7
|
Configuration.validate_tld!(tld)
|
8
|
-
|
8
|
+
binance_uri = ENV['BINANCE_TEST_NET_ENABLE'] ? "https://testnet.binance.vision" : "https://api.binance.#{tld}"
|
9
|
+
self.base_uri binance_uri
|
9
10
|
|
10
11
|
raise Error.new(message: "invalid security type #{security_type}") unless security_types.include?(security_type)
|
11
12
|
all_headers = default_headers(api_key_type: api_key_type, security_type: security_type, api_key: api_key)
|
data/lib/binance/api/version.rb
CHANGED
data/lib/binance/websocket.rb
CHANGED
@@ -58,6 +58,26 @@ module Binance
|
|
58
58
|
subscribe([listen_key])
|
59
59
|
end
|
60
60
|
|
61
|
+
# stream name: <symbol>@trade
|
62
|
+
# {
|
63
|
+
# "e": "trade", // Event type
|
64
|
+
# "E": 123456789, // Event time
|
65
|
+
# "s": "BNBBTC", // Symbol
|
66
|
+
# "t": 12345, // Trade ID
|
67
|
+
# "p": "0.001", // Price
|
68
|
+
# "q": "100", // Quantity
|
69
|
+
# "b": 88, // Buyer order ID
|
70
|
+
# "a": 50, // Seller order ID
|
71
|
+
# "T": 123456785, // Trade time
|
72
|
+
# "m": true, // Is the buyer the market maker?
|
73
|
+
# "M": true // Ignore
|
74
|
+
# }
|
75
|
+
def trades!(symbols, &on_receive)
|
76
|
+
symbols_fmt = symbols.is_a?(String) ? [symbols] : symbols
|
77
|
+
@trades_handler = on_receive
|
78
|
+
subscribe(symbols_fmt.map { |s| "#{s.downcase}@trade" })
|
79
|
+
end
|
80
|
+
|
61
81
|
private
|
62
82
|
|
63
83
|
def process_data(data)
|
@@ -75,6 +95,8 @@ module Binance
|
|
75
95
|
when :executionReport # order update
|
76
96
|
listen_key = json[:stream]
|
77
97
|
@user_stream_handlers[listen_key]&.call(listen_key, json[:data])
|
98
|
+
when :trade
|
99
|
+
@trades_handler&.call(json[:stream], json[:data])
|
78
100
|
end
|
79
101
|
end
|
80
102
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: binance-ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.2
|
4
|
+
version: 1.3.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jake Peterson
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-01-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: codecov
|
@@ -237,5 +237,5 @@ requirements: []
|
|
237
237
|
rubygems_version: 3.1.6
|
238
238
|
signing_key:
|
239
239
|
specification_version: 4
|
240
|
-
summary: binance-ruby-1.2
|
240
|
+
summary: binance-ruby-1.3.2
|
241
241
|
test_files: []
|