peatio 2.6.0 → 2.6.1
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 +1 -1
- data/lib/peatio/version.rb +1 -1
- data/lib/peatio/wallet/abstract.rb +17 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 816cf9783f0a2321d3e924a47284027df67f3d10c94579281d53276157e1f4b1
|
|
4
|
+
data.tar.gz: 65902435a19ec3ffe29157f11199372ba32b372ea70c6247caed4d08114df171
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1caa69c4adf1c4363614726ee6f3e0cdceab0e95bb4717c14b5fa6049f8ed48bf3d945bab12d4f151b0916e101680e216019a49c565f4d156debbb3e5be7d9ff
|
|
7
|
+
data.tar.gz: 7ccc91b495a65117dcfe47cd94cd58e1d8fb953b7c764f5d06060700e3e967e9e2b9fa43ec76db3fed81064263c21fd4b881b3aa614bf4042cd05464ff0b14ce
|
data/Gemfile.lock
CHANGED
data/lib/peatio/version.rb
CHANGED
|
@@ -36,6 +36,23 @@ module Peatio
|
|
|
36
36
|
# @see #configure
|
|
37
37
|
SUPPORTED_SETTINGS = %i[wallet currency].freeze
|
|
38
38
|
|
|
39
|
+
# Hash of features supported by wallet.
|
|
40
|
+
#
|
|
41
|
+
# @abstract
|
|
42
|
+
#
|
|
43
|
+
# @see Abstract::SUPPORTED_FEATURES for list of features supported by peatio.
|
|
44
|
+
#
|
|
45
|
+
# @!attribute [r] features
|
|
46
|
+
# @return [Hash] list of features supported by wallet.
|
|
47
|
+
attr_reader :features
|
|
48
|
+
|
|
49
|
+
# List of features supported by peatio.
|
|
50
|
+
#
|
|
51
|
+
# @note Features list:
|
|
52
|
+
#
|
|
53
|
+
# skip_deposit_collection - defines if deposit will be collected to
|
|
54
|
+
# hot, warm, cold wallets.
|
|
55
|
+
SUPPORTED_FEATURES = %i[skip_deposit_collection].freeze
|
|
39
56
|
|
|
40
57
|
# Abstract constructor.
|
|
41
58
|
#
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: peatio
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.6.
|
|
4
|
+
version: 2.6.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Louis B.
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2020-06-
|
|
12
|
+
date: 2020-06-10 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: activemodel
|