stellar_client 0.5.1 → 0.5.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/stellar_client/responses/withdraw_response.rb +3 -0
- data/lib/stellar_client/version.rb +1 -1
- 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: 91de0c4d8378e702695f0286e276b4087b7007c4fc879512f10de11ae671491e
|
4
|
+
data.tar.gz: 8b1f83a70ae9d5639ef73915814596ff6c42f7fac5a4a1a98a435e9031939b71
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 340f252a75dcae22c752326199052c3457366912c4a8b8ced3138df91899b87d8ea09f8e0511023a3ae6aeb01ba22510435658d87e110eecece45ca1eeda1bff
|
7
|
+
data.tar.gz: 98c5f7b564d4299f556736e59b1e900f8eb5601a1650c80578070f11ea7925a287b46c5178d5b7f973e90ff7324f2959ff9bc514222d2039b737fcfbbb148a60
|
data/CHANGELOG.md
CHANGED
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
|
|
4
4
|
The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
5
5
|
and this project adheres to [Semantic Versioning](http://semver.org/).
|
6
6
|
|
7
|
+
## [0.5.2] - 2018-09-11
|
8
|
+
### Added
|
9
|
+
- Add `WithdrawResponse#max_amount`
|
10
|
+
|
7
11
|
## [0.5.1] - 2018-09-04
|
8
12
|
### Changed
|
9
13
|
- Append `/withdraw` to host/path for `WithdrawRequest`
|
@@ -6,10 +6,12 @@ module StellarClient
|
|
6
6
|
memo_type
|
7
7
|
memo
|
8
8
|
min_amount
|
9
|
+
max_amount
|
9
10
|
fee_fixed
|
10
11
|
fee_percent
|
11
12
|
fee_network
|
12
13
|
].freeze
|
14
|
+
|
13
15
|
attribute(:body, Coercers::IndifferentHash, {
|
14
16
|
lazy: true,
|
15
17
|
default: :default_body,
|
@@ -18,6 +20,7 @@ module StellarClient
|
|
18
20
|
attribute :memo_type, String, lazy: true, default: :default_memo_type
|
19
21
|
attribute :memo, String, lazy: true, default: :default_memo
|
20
22
|
attribute :min_amount, BigDecimal, lazy: true, default: :default_min_amount
|
23
|
+
attribute :max_amount, BigDecimal, lazy: true, default: :default_max_amount
|
21
24
|
attribute :fee_fixed, BigDecimal, lazy: true, default: :default_fee_fixed
|
22
25
|
attribute(:fee_percent, BigDecimal, {
|
23
26
|
lazy: true,
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: stellar_client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ramon Tayag
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-09-
|
11
|
+
date: 2018-09-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gem_config
|