binance_client 3.0.1 → 4.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/Gemfile.lock +3 -3
- data/lib/binance_client/client.rb +1 -1
- data/lib/binance_client/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f3b7cc28ee5e49a6bd911193495c4fe75c8cb8854567a26aee1e4c4ab644403e
|
4
|
+
data.tar.gz: 8b2deb1fb0a89194fb839c4ed21949955c564f2cea8bfaccd35fb18a15619e72
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ac8076c646803401ee62a4320dc8f45335a0d0b3b7647e9c106816ffc5349853b789a3d83760f254cf4bf8e9c0ab32109e71b29225355a5100692fbf4ace5487
|
7
|
+
data.tar.gz: 47bea0043b15597afc809976f0389a8824b984115324fa430b115db2467559d9312c13a5f7d4790bb02ad22f3ffd8ac7fe2e5aaf3996d11a4f34e54d380ffb9b
|
data/CHANGELOG.md
CHANGED
@@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
|
|
4
4
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
5
5
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
6
6
|
|
7
|
+
## [4.0.0]
|
8
|
+
### Added
|
9
|
+
- Add optional `network` parameter when getting deposit address of a specific network
|
10
|
+
- Use keyword arguments when calling `sub_account_deposit_address`
|
11
|
+
|
7
12
|
## [3.0.1]
|
8
13
|
### Fixed
|
9
14
|
- `Coin#network_list` is initialized properly
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
binance_client (
|
4
|
+
binance_client (4.0.0)
|
5
5
|
activesupport
|
6
6
|
api_client_base (~> 1.11)
|
7
7
|
typhoeus
|
@@ -39,7 +39,7 @@ GEM
|
|
39
39
|
ffi (>= 1.15.0)
|
40
40
|
factory_bot (6.2.0)
|
41
41
|
activesupport (>= 5.0.0)
|
42
|
-
ffi (1.15.
|
42
|
+
ffi (1.15.5)
|
43
43
|
gem_config (0.3.2)
|
44
44
|
hashdiff (1.0.1)
|
45
45
|
i18n (1.8.11)
|
@@ -102,4 +102,4 @@ DEPENDENCIES
|
|
102
102
|
webmock
|
103
103
|
|
104
104
|
BUNDLED WITH
|
105
|
-
2.2.
|
105
|
+
2.2.29
|
@@ -10,7 +10,7 @@ module BinanceClient
|
|
10
10
|
api_action :book_ticker
|
11
11
|
api_action :order_book_depth
|
12
12
|
api_action :sub_account_assets, args: [:email]
|
13
|
-
api_action :sub_account_deposit_address
|
13
|
+
api_action :sub_account_deposit_address
|
14
14
|
api_action :sub_account_deposit_history
|
15
15
|
|
16
16
|
attribute :host
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: binance_client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 4.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- AJ Villalobos
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-03-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: api_client_base
|
@@ -159,7 +159,7 @@ metadata:
|
|
159
159
|
homepage_uri: https://github.com/bloom-solutions/binance_client-ruby
|
160
160
|
source_code_uri: https://github.com/bloom-solutions/binance_client-ruby
|
161
161
|
changelog_uri: https://github.com/bloom-solutions/binance_client-ruby/CHANGELOG.md
|
162
|
-
post_install_message:
|
162
|
+
post_install_message:
|
163
163
|
rdoc_options: []
|
164
164
|
require_paths:
|
165
165
|
- lib
|
@@ -175,7 +175,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
175
175
|
version: '0'
|
176
176
|
requirements: []
|
177
177
|
rubygems_version: 3.1.6
|
178
|
-
signing_key:
|
178
|
+
signing_key:
|
179
179
|
specification_version: 4
|
180
180
|
summary: Ruby wrapper for Binance API
|
181
181
|
test_files: []
|