stellar-base 0.20.0 → 0.23.0.rc2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +35 -21
- data/{LICENSE.txt → LICENSE} +0 -0
- data/README.md +2 -3
- data/generated/stellar-base-generated.rb +31 -4
- data/generated/stellar/allow_trust_op.rb +3 -2
- data/generated/stellar/authenticated_message.rb +4 -4
- data/generated/stellar/authenticated_message/v0.rb +4 -4
- data/generated/stellar/change_trust_result_code.rb +1 -1
- data/generated/stellar/crypto_key_type.rb +8 -4
- data/generated/stellar/curve25519_public.rb +1 -1
- data/generated/stellar/curve25519_secret.rb +1 -1
- data/generated/stellar/envelope_type.rb +9 -5
- data/generated/stellar/fee_bump_transaction.rb +39 -0
- data/generated/stellar/fee_bump_transaction/ext.rb +24 -0
- data/generated/stellar/fee_bump_transaction/inner_tx.rb +25 -0
- data/generated/stellar/fee_bump_transaction_envelope.rb +22 -0
- data/generated/stellar/hmac_sha256_key.rb +1 -1
- data/generated/stellar/hmac_sha256_mac.rb +1 -1
- data/generated/stellar/inner_transaction_result.rb +56 -0
- data/generated/stellar/inner_transaction_result/ext.rb +24 -0
- data/generated/stellar/inner_transaction_result/result.rb +52 -0
- data/generated/stellar/inner_transaction_result_pair.rb +20 -0
- data/generated/stellar/ledger_close_meta.rb +23 -0
- data/generated/stellar/ledger_close_meta_v0.rb +35 -0
- data/generated/stellar/manage_buy_offer_result_code.rb +5 -4
- data/generated/stellar/manage_sell_offer_result_code.rb +12 -8
- data/generated/stellar/message_type.rb +6 -1
- data/generated/stellar/muxed_account.rb +35 -0
- data/generated/stellar/muxed_account/med25519.rb +22 -0
- data/generated/stellar/operation.rb +7 -5
- data/generated/stellar/operation/body.rb +31 -27
- data/generated/stellar/operation_result.rb +5 -3
- data/generated/stellar/operation_result/tr.rb +33 -29
- data/generated/stellar/operation_result_code.rb +3 -3
- data/generated/stellar/operation_type.rb +17 -15
- data/generated/stellar/{path_payment_op.rb → path_payment_strict_receive_op.rb} +6 -6
- data/generated/stellar/path_payment_strict_receive_result.rb +38 -0
- data/generated/stellar/path_payment_strict_receive_result/success.rb +22 -0
- data/generated/stellar/path_payment_strict_receive_result_code.rb +56 -0
- data/generated/stellar/path_payment_strict_send_op.rb +32 -0
- data/generated/stellar/{path_payment_result.rb → path_payment_strict_send_result.rb} +7 -7
- data/generated/stellar/{path_payment_result → path_payment_strict_send_result}/success.rb +1 -1
- data/generated/stellar/path_payment_strict_send_result_code.rb +55 -0
- data/generated/stellar/payment_op.rb +4 -4
- data/generated/stellar/peer_stats.rb +48 -0
- data/generated/stellar/signed_survey_request_message.rb +20 -0
- data/generated/stellar/signed_survey_response_message.rb +20 -0
- data/generated/stellar/stellar_message.rb +22 -12
- data/generated/stellar/survey_message_command_type.rb +20 -0
- data/generated/stellar/survey_request_message.rb +26 -0
- data/generated/stellar/survey_response_body.rb +23 -0
- data/generated/stellar/survey_response_message.rb +26 -0
- data/generated/stellar/topology_response_body.rb +25 -0
- data/generated/stellar/transaction.rb +2 -2
- data/generated/stellar/transaction_envelope.rb +17 -8
- data/generated/stellar/transaction_meta.rb +4 -0
- data/generated/stellar/transaction_meta_v2.rb +24 -0
- data/generated/stellar/transaction_result.rb +3 -0
- data/generated/stellar/transaction_result/result.rb +9 -3
- data/generated/stellar/transaction_result_code.rb +21 -14
- data/generated/stellar/transaction_result_meta.rb +22 -0
- data/generated/stellar/transaction_signature_payload.rb +3 -1
- data/generated/stellar/transaction_signature_payload/tagged_transaction.rb +7 -3
- data/generated/stellar/transaction_v0.rb +39 -0
- data/generated/stellar/transaction_v0/ext.rb +24 -0
- data/generated/stellar/transaction_v0_envelope.rb +22 -0
- data/generated/stellar/transaction_v1_envelope.rb +22 -0
- data/generated/stellar/trust_line_flags.rb +6 -2
- data/generated/stellar/upgrade_entry_meta.rb +20 -0
- data/lib/stellar-base.rb +27 -24
- data/lib/stellar/account_flags.rb +2 -4
- data/lib/stellar/asset.rb +6 -6
- data/lib/stellar/base.rb +1 -1
- data/lib/stellar/{base/compat.rb → compat.rb} +6 -7
- data/lib/stellar/concerns/transaction.rb +49 -0
- data/lib/stellar/convert.rb +2 -2
- data/lib/stellar/factories.rb +1 -3
- data/lib/stellar/fee_bump_transaction.rb +21 -0
- data/lib/stellar/key_pair.rb +9 -6
- data/lib/stellar/networks.rb +5 -7
- data/lib/stellar/operation.rb +427 -336
- data/lib/stellar/{path_payment_result.rb → path_payment_strict_receive_result.rb} +2 -3
- data/lib/stellar/price.rb +2 -4
- data/lib/stellar/signer_key.rb +4 -8
- data/lib/stellar/thresholds.rb +5 -7
- data/lib/stellar/transaction.rb +154 -175
- data/lib/stellar/transaction_builder.rb +149 -0
- data/lib/stellar/transaction_envelope.rb +40 -8
- data/lib/stellar/transaction_v0.rb +39 -0
- data/lib/stellar/util/continued_fraction.rb +19 -19
- data/lib/stellar/util/strkey.rb +39 -14
- data/lib/stellar/{base/version.rb → version.rb} +1 -1
- metadata +61 -211
- data/.gitignore +0 -17
- data/.travis.yml +0 -16
- data/.yardopts +0 -8
- data/CONTRIBUTING.md +0 -48
- data/Gemfile +0 -15
- data/Guardfile +0 -5
- data/Rakefile +0 -4
- data/examples/allow_trust.rb +0 -51
- data/examples/create_account.rb +0 -26
- data/examples/low_level_transaction_post.rb +0 -46
- data/examples/mid_level_transaction_post.rb +0 -33
- data/examples/non_native_payment.rb +0 -60
- data/examples/offer.rb +0 -75
- data/examples/transaction_merge.rb +0 -23
- data/generated/stellar/path_payment_result_code.rb +0 -47
- data/ruby-stellar-base.gemspec +0 -34
- data/spec/lib/stellar/account_flags_spec.rb +0 -19
- data/spec/lib/stellar/asset_spec.rb +0 -45
- data/spec/lib/stellar/convert_spec.rb +0 -61
- data/spec/lib/stellar/key_pair_spec.rb +0 -251
- data/spec/lib/stellar/networks_spec.rb +0 -77
- data/spec/lib/stellar/operation_spec.rb +0 -71
- data/spec/lib/stellar/path_payment_result_spec.rb +0 -95
- data/spec/lib/stellar/price_spec.rb +0 -34
- data/spec/lib/stellar/signer_key_spec.rb +0 -26
- data/spec/lib/stellar/thresholds_spec.rb +0 -62
- data/spec/lib/stellar/transaction_envelope_spec.rb +0 -93
- data/spec/lib/stellar/transaction_spec.rb +0 -100
- data/spec/lib/stellar/util/strkey_spec.rb +0 -54
- data/spec/spec_helper.rb +0 -16
- data/spec/support/matchers/be_strkey.rb +0 -9
- data/spec/support/matchers/eq_bytes.rb +0 -5
- data/spec/support/matchers/have_length.rb +0 -5
- data/tasks/rspec.rake +0 -6
- data/tasks/travis.rake +0 -1
- data/tasks/xdr.rake +0 -45
- data/xdr/Stellar-SCP.x +0 -86
- data/xdr/Stellar-ledger-entries.x +0 -295
- data/xdr/Stellar-ledger.x +0 -318
- data/xdr/Stellar-overlay.x +0 -146
- data/xdr/Stellar-transaction.x +0 -834
- data/xdr/Stellar-types.x +0 -81
@@ -1,7 +1,5 @@
|
|
1
1
|
module Stellar
|
2
2
|
class AccountFlags
|
3
|
-
|
4
|
-
|
5
3
|
#
|
6
4
|
# Converts an array of Stellar::AccountFlags members into
|
7
5
|
# an Integer suitable for use in a SetOptionsOp.
|
@@ -9,7 +7,7 @@ module Stellar
|
|
9
7
|
# @param flags=nil [Array<Stellar::AccountFlags>] the flags to combine
|
10
8
|
#
|
11
9
|
# @return [Fixnum] the combined result
|
12
|
-
def self.make_mask(flags=nil)
|
10
|
+
def self.make_mask(flags = nil)
|
13
11
|
flags ||= []
|
14
12
|
|
15
13
|
flags.map(&:value).inject(&:|) || 0
|
@@ -22,7 +20,7 @@ module Stellar
|
|
22
20
|
# @param combined [Fixnum]
|
23
21
|
# @return [Array<Stellar::AccountFlags>]
|
24
22
|
def self.parse_mask(combined)
|
25
|
-
members.values.select{|m| (m.value & combined) != 0}
|
23
|
+
members.values.select { |m| (m.value & combined) != 0 }
|
26
24
|
end
|
27
25
|
end
|
28
26
|
end
|
data/lib/stellar/asset.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
module Stellar
|
2
2
|
class Asset
|
3
|
-
TYPES = %i
|
3
|
+
TYPES = %i[native alphanum4 alphanum12]
|
4
4
|
|
5
5
|
def self.native
|
6
6
|
new(:asset_type_native)
|
@@ -9,14 +9,14 @@ module Stellar
|
|
9
9
|
def self.alphanum4(code, issuer)
|
10
10
|
raise ArgumentError, "Bad :issuer" unless issuer.is_a?(KeyPair)
|
11
11
|
code = normalize_code(code, 4)
|
12
|
-
an = AlphaNum4.new({asset_code:code, issuer:issuer.account_id})
|
12
|
+
an = AlphaNum4.new({asset_code: code, issuer: issuer.account_id})
|
13
13
|
new(:asset_type_credit_alphanum4, an)
|
14
14
|
end
|
15
15
|
|
16
16
|
def self.alphanum12(code, issuer)
|
17
17
|
raise ArgumentError, "Bad :issuer" unless issuer.is_a?(KeyPair)
|
18
18
|
code = normalize_code(code, 12)
|
19
|
-
an = AlphaNum12.new({asset_code:code, issuer:issuer.account_id})
|
19
|
+
an = AlphaNum12.new({asset_code: code, issuer: issuer.account_id})
|
20
20
|
new(:asset_type_credit_alphanum12, an)
|
21
21
|
end
|
22
22
|
|
@@ -36,8 +36,8 @@ module Stellar
|
|
36
36
|
end
|
37
37
|
|
38
38
|
def inspect
|
39
|
-
label = switch.to_s
|
40
|
-
"#<Stellar::Asset #{
|
39
|
+
# label = switch.to_s
|
40
|
+
"#<Stellar::Asset #{self}>"
|
41
41
|
end
|
42
42
|
|
43
43
|
def code
|
@@ -50,7 +50,7 @@ module Stellar
|
|
50
50
|
raise "#{switch} assets do not have a code"
|
51
51
|
end
|
52
52
|
end
|
53
|
-
|
53
|
+
|
54
54
|
def issuer
|
55
55
|
case switch
|
56
56
|
when AssetType.asset_type_credit_alphanum4
|
data/lib/stellar/base.rb
CHANGED
@@ -1 +1 @@
|
|
1
|
-
require "stellar-base"
|
1
|
+
require "stellar-base"
|
@@ -1,10 +1,10 @@
|
|
1
|
-
require
|
1
|
+
require "active_support/deprecation"
|
2
2
|
|
3
|
-
Stellar::Deprecation ||= ActiveSupport::Deprecation.new(
|
3
|
+
Stellar::Deprecation ||= ActiveSupport::Deprecation.new("next release", "stellar-base")
|
4
4
|
|
5
5
|
class << Stellar::Operation
|
6
|
-
|
7
|
-
|
6
|
+
alias manage_offer manage_sell_offer
|
7
|
+
alias create_passive_offer create_passive_sell_offer
|
8
8
|
|
9
9
|
deprecate deprecator: Stellar::Deprecation,
|
10
10
|
manage_offer: :manage_sell_offer,
|
@@ -12,11 +12,10 @@ class << Stellar::Operation
|
|
12
12
|
end
|
13
13
|
|
14
14
|
class << Stellar::Transaction
|
15
|
-
|
16
|
-
|
15
|
+
alias manage_offer manage_sell_offer
|
16
|
+
alias create_passive_offer create_passive_sell_offer
|
17
17
|
|
18
18
|
deprecate deprecator: Stellar::Deprecation,
|
19
19
|
manage_offer: :manage_sell_offer,
|
20
20
|
create_passive_offer: :create_passive_sell_offer
|
21
21
|
end
|
22
|
-
|
@@ -0,0 +1,49 @@
|
|
1
|
+
module Stellar::Concerns
|
2
|
+
module Transaction
|
3
|
+
# Returns the string of bytes that, when hashed, provide the value which
|
4
|
+
# should be signed to create a valid stellar transaction signature
|
5
|
+
def signature_base
|
6
|
+
signature_base_prefix + to_xdr
|
7
|
+
end
|
8
|
+
|
9
|
+
def sign(key_pair)
|
10
|
+
key_pair.sign(hash)
|
11
|
+
end
|
12
|
+
|
13
|
+
def sign_decorated(key_pair)
|
14
|
+
key_pair.sign_decorated(hash)
|
15
|
+
end
|
16
|
+
|
17
|
+
def hash
|
18
|
+
Digest::SHA256.digest(signature_base)
|
19
|
+
end
|
20
|
+
|
21
|
+
def merge(other)
|
22
|
+
cloned = Marshal.load Marshal.dump(self)
|
23
|
+
cloned.operations += other.to_operations
|
24
|
+
cloned
|
25
|
+
end
|
26
|
+
|
27
|
+
#
|
28
|
+
# Extracts the operations from this single transaction,
|
29
|
+
# setting the source account on the extracted operations.
|
30
|
+
#
|
31
|
+
# Useful for merging transactions.
|
32
|
+
#
|
33
|
+
# @return [Array<Operation>] the operations
|
34
|
+
def to_operations
|
35
|
+
# FIXME: what was the purpose of this?
|
36
|
+
# cloned = Marshal.load Marshal.dump(operations)
|
37
|
+
operations.each do |op|
|
38
|
+
op.source_account ||= source_account
|
39
|
+
end
|
40
|
+
end
|
41
|
+
|
42
|
+
def apply_defaults
|
43
|
+
self.operations ||= []
|
44
|
+
self.fee ||= 100
|
45
|
+
self.memo ||= Stellar::Memo.new(:memo_none)
|
46
|
+
self.ext ||= Stellar::Transaction::Ext.new 0
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
data/lib/stellar/convert.rb
CHANGED
data/lib/stellar/factories.rb
CHANGED
@@ -1,5 +1,4 @@
|
|
1
1
|
FactoryBot.define do
|
2
|
-
|
3
2
|
factory :stellar_ledger, class: Hyperclient::Resource do
|
4
3
|
initialize_with { new(attributes.stringify_keys, nil, nil) }
|
5
4
|
|
@@ -39,7 +38,7 @@ FactoryBot.define do
|
|
39
38
|
fee_meta_xdr { "AAAAAgAAAAMAAAABAAAAAAAAAAABlHJijueOuScU0i0DkJY8JNkn6gCZmUhuiR+sLaqcIQ3gtrOnZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAEAAAADAAAAAAAAAAABlHJijueOuScU0i0DkJY8JNkn6gCZmUhuiR+sLaqcIQ3gtrOnY/7UAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAA==" }
|
40
39
|
memo_type { "text" }
|
41
40
|
signatures do
|
42
|
-
[
|
41
|
+
["SsKlst02jsaBp35vXlI300Qbz39+HbwwNDX/gfM+MwaG/dFF7bgqpkKsDAsh/qJDiN3NOW695IZB9Mj+JAsHBA=="]
|
43
42
|
end
|
44
43
|
end
|
45
44
|
|
@@ -57,5 +56,4 @@ FactoryBot.define do
|
|
57
56
|
funder { "GAAZI4TCR3TY5OJHCTJC2A4QSY6CJWJH5IAJTGKIN2ER7LBNVKOCCWN7" }
|
58
57
|
account { "GALPCCZN4YXA3YMJHKL6CVIECKPLJJCTVMSNYWBTKJW4K5HQLYLDMZTB" }
|
59
58
|
end
|
60
|
-
|
61
59
|
end
|
@@ -0,0 +1,21 @@
|
|
1
|
+
module Stellar
|
2
|
+
class FeeBumpTransaction
|
3
|
+
include Stellar::Concerns::Transaction
|
4
|
+
|
5
|
+
def to_envelope(*key_pairs)
|
6
|
+
signatures = (key_pairs || []).map(&method(:sign_decorated))
|
7
|
+
|
8
|
+
TransactionEnvelope.fee_bump(signatures: signatures, tx: self)
|
9
|
+
end
|
10
|
+
|
11
|
+
def signature_base_prefix
|
12
|
+
val = Stellar::EnvelopeType.envelope_type_tx_fee_bump
|
13
|
+
|
14
|
+
Stellar.current_network_id + Stellar::EnvelopeType.to_xdr(val)
|
15
|
+
end
|
16
|
+
|
17
|
+
def source_account
|
18
|
+
source_account_ed25519
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
data/lib/stellar/key_pair.rb
CHANGED
@@ -36,7 +36,7 @@ module Stellar
|
|
36
36
|
from_raw_seed(Stellar.current_network_id)
|
37
37
|
end
|
38
38
|
|
39
|
-
def initialize(public_key, secret_key=nil)
|
39
|
+
def initialize(public_key, secret_key = nil)
|
40
40
|
@public_key = public_key
|
41
41
|
@secret_key = secret_key
|
42
42
|
end
|
@@ -45,6 +45,10 @@ module Stellar
|
|
45
45
|
Stellar::AccountID.new :public_key_type_ed25519, raw_public_key
|
46
46
|
end
|
47
47
|
|
48
|
+
def muxed_account
|
49
|
+
Stellar::MuxedAccount.new :key_type_ed25519, raw_public_key
|
50
|
+
end
|
51
|
+
|
48
52
|
def public_key
|
49
53
|
Stellar::PublicKey.new :public_key_type_ed25519, raw_public_key
|
50
54
|
end
|
@@ -81,9 +85,9 @@ module Stellar
|
|
81
85
|
|
82
86
|
def seed
|
83
87
|
raise "no private key" if @secret_key.nil?
|
84
|
-
#TODO: improve the error class above
|
88
|
+
# TODO: improve the error class above
|
85
89
|
seed_bytes = raw_seed
|
86
|
-
|
90
|
+
Util::StrKey.check_encode(:seed, seed_bytes)
|
87
91
|
end
|
88
92
|
|
89
93
|
def sign?
|
@@ -92,14 +96,14 @@ module Stellar
|
|
92
96
|
|
93
97
|
def sign(message)
|
94
98
|
raise "no private key" if @secret_key.nil?
|
95
|
-
#TODO: improve the error class above
|
99
|
+
# TODO: improve the error class above
|
96
100
|
@secret_key.sign(message)
|
97
101
|
end
|
98
102
|
|
99
103
|
def sign_decorated(message)
|
100
104
|
raw_signature = sign(message)
|
101
105
|
Stellar::DecoratedSignature.new({
|
102
|
-
hint:
|
106
|
+
hint: signature_hint,
|
103
107
|
signature: raw_signature
|
104
108
|
})
|
105
109
|
end
|
@@ -111,6 +115,5 @@ module Stellar
|
|
111
115
|
rescue RbNaCl::BadSignatureError
|
112
116
|
false
|
113
117
|
end
|
114
|
-
|
115
118
|
end
|
116
119
|
end
|
data/lib/stellar/networks.rb
CHANGED
@@ -1,10 +1,8 @@
|
|
1
1
|
module Stellar
|
2
2
|
# Provides a container for well-known network passphrases, such as the main network and SDF test network
|
3
3
|
module Networks
|
4
|
-
|
5
|
-
PUBLIC = "Public Global Stellar Network ; September 2015"
|
4
|
+
PUBLIC = "Public Global Stellar Network ; September 2015"
|
6
5
|
TESTNET = "Test SDF Network ; September 2015"
|
7
|
-
|
8
6
|
end
|
9
7
|
|
10
8
|
# Configures the default stellar network passphrase for the current process. Unless otherwise
|
@@ -23,15 +21,15 @@ module Stellar
|
|
23
21
|
# Returns the passphrase for the currently-configured network, as set by Stellar.default_network
|
24
22
|
# or Stellar.on_network
|
25
23
|
def self.current_network
|
26
|
-
Thread.current["stellar_network_passphrase"] ||
|
27
|
-
|
28
|
-
|
24
|
+
Thread.current["stellar_network_passphrase"] ||
|
25
|
+
@default_network ||
|
26
|
+
Stellar::Networks::TESTNET
|
29
27
|
end
|
30
28
|
|
31
29
|
# Returns the id for the currently configured network, suitable for use in generating
|
32
30
|
# a signature base string or making the root account's keypair.
|
33
31
|
def self.current_network_id
|
34
|
-
Digest::SHA256.digest(
|
32
|
+
Digest::SHA256.digest(current_network)
|
35
33
|
end
|
36
34
|
|
37
35
|
# Executes the provided block in the context of the provided network.
|
data/lib/stellar/operation.rb
CHANGED
@@ -1,387 +1,478 @@
|
|
1
|
-
require
|
1
|
+
require "bigdecimal"
|
2
2
|
|
3
3
|
module Stellar
|
4
4
|
class Operation
|
5
|
-
|
6
5
|
MAX_INT64 = 2**63 - 1
|
7
6
|
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
7
|
+
class << self
|
8
|
+
#
|
9
|
+
# Construct a new Stellar::Operation from the provided
|
10
|
+
# source account and body
|
11
|
+
#
|
12
|
+
# @param [Hash] attributes the attributes to create the operation with
|
13
|
+
# @option attributes [Stellar::KeyPair] :source_account
|
14
|
+
# @option attributes [Stellar::Operation::Body] :body
|
15
|
+
#
|
16
|
+
# @return [Stellar::Operation] the built operation
|
17
|
+
def make(attributes = {})
|
18
|
+
source_account = attributes[:source_account]
|
19
|
+
body = Stellar::Operation::Body.new(*attributes[:body])
|
20
|
+
|
21
|
+
op = Stellar::Operation.new(body: body)
|
22
|
+
|
23
|
+
if source_account
|
24
|
+
raise ArgumentError, "Bad :source_account" unless source_account.is_a?(Stellar::KeyPair)
|
25
|
+
op.source_account = source_account.muxed_account
|
26
|
+
end
|
27
|
+
|
28
|
+
op
|
26
29
|
end
|
27
30
|
|
28
|
-
|
29
|
-
|
31
|
+
#
|
32
|
+
# Helper method to create a valid PaymentOp, wrapped
|
33
|
+
# in the necessary XDR structs to be included within a
|
34
|
+
# transactions `operations` array.
|
35
|
+
#
|
36
|
+
# @see Stellar::Asset
|
37
|
+
#
|
38
|
+
# @param [Hash] attributes the attributes to create the operation with
|
39
|
+
# @option attributes [Stellar::KeyPair] :destination the receiver of the payment
|
40
|
+
# @option attributes [Array] :amount the amount to pay
|
41
|
+
# @return [Stellar::Operation] the built operation, containing a
|
42
|
+
# Stellar::PaymentOp body
|
43
|
+
def payment(attributes = {})
|
44
|
+
destination = attributes[:destination]
|
45
|
+
asset, amount = get_asset_amount(attributes[:amount])
|
46
|
+
|
47
|
+
raise ArgumentError unless destination.is_a?(KeyPair)
|
48
|
+
|
49
|
+
op = PaymentOp.new
|
50
|
+
op.asset = asset
|
51
|
+
op.amount = amount
|
52
|
+
op.destination = destination.muxed_account
|
53
|
+
|
54
|
+
make(attributes.merge({
|
55
|
+
body: [:payment, op]
|
56
|
+
}))
|
57
|
+
end
|
30
58
|
|
59
|
+
#
|
60
|
+
# Helper method to create a valid PathPaymentStrictReceiveOp, wrapped
|
61
|
+
# in the necessary XDR structs to be included within a
|
62
|
+
# transactions `operations` array.
|
63
|
+
#
|
64
|
+
# @deprecated Please use Operation.path_payment_strict_receive
|
65
|
+
#
|
66
|
+
# @see Stellar::Asset
|
67
|
+
#
|
68
|
+
# @param [Hash] attributes the attributes to create the operation with
|
69
|
+
# @option attributes [Stellar::KeyPair] :destination the receiver of the payment
|
70
|
+
# @option attributes [Array] :amount the destination asset and the amount to pay
|
71
|
+
# @option attributes [Array] :with the source asset and maximum allowed source amount to pay with
|
72
|
+
# @option attributes [Array<Stellar::Asset>] :path the payment path to use
|
73
|
+
#
|
74
|
+
# @return [Stellar::Operation] the built operation, containing a Stellar::PaymentOp body
|
75
|
+
#
|
76
|
+
def path_payment(attributes = {})
|
77
|
+
path_payment_strict_receive(attributes)
|
78
|
+
end
|
31
79
|
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
80
|
+
#
|
81
|
+
# Helper method to create a valid PathPaymentStrictReceiveOp, wrapped
|
82
|
+
# in the necessary XDR structs to be included within a
|
83
|
+
# transactions `operations` array.
|
84
|
+
#
|
85
|
+
# @see Stellar::Asset
|
86
|
+
#
|
87
|
+
# @param [Hash] attributes the attributes to create the operation with
|
88
|
+
# @option attributes [Stellar::KeyPair] :destination the receiver of the payment
|
89
|
+
# @option attributes [Array] :amount the destination asset and the amount to pay
|
90
|
+
# @option attributes [Array] :with the source asset and maximum allowed source amount to pay with
|
91
|
+
# @option attributes [Array<Stellar::Asset>] :path the payment path to use
|
92
|
+
#
|
93
|
+
# @return [Stellar::Operation] the built operation, containing a Stellar::PaymentOp body
|
94
|
+
#
|
95
|
+
def path_payment_strict_receive(attributes = {})
|
96
|
+
destination = attributes[:destination]
|
97
|
+
asset, amount = get_asset_amount(attributes[:amount])
|
98
|
+
send_asset, send_max = get_asset_amount(attributes[:with])
|
99
|
+
path = (attributes[:path] || []).map { |p|
|
100
|
+
p.is_a?(Array) ? Stellar::Asset.send(*p) : p
|
101
|
+
}
|
102
|
+
|
103
|
+
raise ArgumentError unless destination.is_a?(KeyPair)
|
104
|
+
|
105
|
+
op = PathPaymentStrictReceiveOp.new
|
106
|
+
op.send_asset = send_asset
|
107
|
+
op.send_max = send_max
|
108
|
+
op.destination = destination.muxed_account
|
109
|
+
op.dest_asset = asset
|
110
|
+
op.dest_amount = amount
|
111
|
+
op.path = path
|
112
|
+
|
113
|
+
make(attributes.merge({
|
114
|
+
body: [:path_payment_strict_receive, op]
|
115
|
+
}))
|
116
|
+
end
|
60
117
|
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
118
|
+
#
|
119
|
+
# Helper method to create a valid PathPaymentStrictSendOp, wrapped
|
120
|
+
# in the necessary XDR structs to be included within a
|
121
|
+
# transactions `operations` array.
|
122
|
+
#
|
123
|
+
# @see Stellar::Asset
|
124
|
+
#
|
125
|
+
# @param [Hash] attributes the attributes to create the operation with
|
126
|
+
# @option attributes [Stellar::KeyPair] :destination the receiver of the payment
|
127
|
+
# @option attributes [Array] :amount the destination asset and the minimum amount of destination asset to be received
|
128
|
+
# @option attributes [Array] :with the source asset and amount to pay with
|
129
|
+
# @option attributes [Array<Stellar::Asset>] :path the payment path to use
|
130
|
+
#
|
131
|
+
# @return [Stellar::Operation] the built operation, containing a Stellar::PaymentOp body
|
132
|
+
#
|
133
|
+
def path_payment_strict_send(attributes = {})
|
134
|
+
destination = attributes[:destination]
|
135
|
+
asset, dest_min = get_asset_amount(attributes[:amount])
|
136
|
+
send_asset, send_amount = get_asset_amount(attributes[:with])
|
137
|
+
path = (attributes[:path] || []).map { |p|
|
138
|
+
p.is_a?(Array) ? Stellar::Asset.send(*p) : p
|
139
|
+
}
|
140
|
+
|
141
|
+
raise ArgumentError unless destination.is_a?(KeyPair)
|
142
|
+
|
143
|
+
op = PathPaymentStrictSendOp.new
|
144
|
+
op.send_asset = send_asset
|
145
|
+
op.send_amount = send_amount
|
146
|
+
op.destination = destination.muxed_account
|
147
|
+
op.dest_asset = asset
|
148
|
+
op.dest_min = dest_min
|
149
|
+
op.path = path
|
150
|
+
|
151
|
+
make(attributes.merge({
|
152
|
+
body: [:path_payment_strict_send, op]
|
153
|
+
}))
|
154
|
+
end
|
96
155
|
|
97
|
-
|
98
|
-
|
99
|
-
|
156
|
+
def create_account(attributes = {})
|
157
|
+
destination = attributes[:destination]
|
158
|
+
starting_balance = interpret_amount(attributes[:starting_balance])
|
100
159
|
|
101
|
-
|
160
|
+
raise ArgumentError unless destination.is_a?(KeyPair)
|
102
161
|
|
103
|
-
|
104
|
-
|
105
|
-
|
162
|
+
op = CreateAccountOp.new
|
163
|
+
op.destination = destination.account_id
|
164
|
+
op.starting_balance = starting_balance
|
106
165
|
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
166
|
+
make(attributes.merge({
|
167
|
+
body: [:create_account, op]
|
168
|
+
}))
|
169
|
+
end
|
111
170
|
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
171
|
+
#
|
172
|
+
# Helper method to create a valid ChangeTrustOp, wrapped
|
173
|
+
# in the necessary XDR structs to be included within a
|
174
|
+
# transactions `operations` array.
|
175
|
+
#
|
176
|
+
# @param [Hash] attributes the attributes to create the operation with
|
177
|
+
# @option attributes [Stellar::Asset] :line the asset to trust
|
178
|
+
# @option attributes [Fixnum] :limit the maximum amount to trust, defaults to max int64,
|
179
|
+
# if the limit is set to 0 it deletes the trustline.
|
180
|
+
#
|
181
|
+
# @return [Stellar::Operation] the built operation, containing a
|
182
|
+
# Stellar::ChangeTrustOp body
|
183
|
+
def change_trust(attributes = {})
|
184
|
+
line = attributes[:line]
|
185
|
+
unless line.is_a?(Asset)
|
186
|
+
unless Asset::TYPES.include?(line[0])
|
187
|
+
fail ArgumentError, "must be one of #{Asset::TYPES}"
|
188
|
+
end
|
189
|
+
line = Asset.send(*line)
|
129
190
|
end
|
130
|
-
line = Asset.send(*line)
|
131
|
-
end
|
132
191
|
|
133
|
-
|
192
|
+
limit = attributes.key?(:limit) ? interpret_amount(attributes[:limit]) : MAX_INT64
|
134
193
|
|
135
|
-
|
194
|
+
raise ArgumentError, "Bad :limit #{limit}" unless limit.is_a?(Integer)
|
136
195
|
|
137
|
-
|
196
|
+
op = ChangeTrustOp.new(line: line, limit: limit)
|
138
197
|
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
198
|
+
make(attributes.merge({
|
199
|
+
body: [:change_trust, op]
|
200
|
+
}))
|
201
|
+
end
|
143
202
|
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
price:
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
203
|
+
def manage_sell_offer(attributes = {})
|
204
|
+
buying = attributes[:buying]
|
205
|
+
if buying.is_a?(Array)
|
206
|
+
buying = Asset.send(*buying)
|
207
|
+
end
|
208
|
+
selling = attributes[:selling]
|
209
|
+
if selling.is_a?(Array)
|
210
|
+
selling = Asset.send(*selling)
|
211
|
+
end
|
212
|
+
amount = interpret_amount(attributes[:amount])
|
213
|
+
offer_id = attributes[:offer_id] || 0
|
214
|
+
price = interpret_price(attributes[:price])
|
215
|
+
|
216
|
+
op = ManageSellOfferOp.new({
|
217
|
+
buying: buying,
|
218
|
+
selling: selling,
|
219
|
+
amount: amount,
|
220
|
+
price: price,
|
221
|
+
offer_id: offer_id
|
222
|
+
})
|
223
|
+
|
224
|
+
make(attributes.merge({
|
225
|
+
body: [:manage_sell_offer, op]
|
226
|
+
}))
|
227
|
+
end
|
163
228
|
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
price:
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
229
|
+
def manage_buy_offer(attributes = {})
|
230
|
+
buying = attributes[:buying]
|
231
|
+
if buying.is_a?(Array)
|
232
|
+
buying = Asset.send(*buying)
|
233
|
+
end
|
234
|
+
selling = attributes[:selling]
|
235
|
+
if selling.is_a?(Array)
|
236
|
+
selling = Asset.send(*selling)
|
237
|
+
end
|
238
|
+
amount = interpret_amount(attributes[:amount])
|
239
|
+
offer_id = attributes[:offer_id] || 0
|
240
|
+
price = interpret_price(attributes[:price])
|
241
|
+
|
242
|
+
op = ManageBuyOfferOp.new({
|
243
|
+
buying: buying,
|
244
|
+
selling: selling,
|
245
|
+
amount: amount,
|
246
|
+
price: price,
|
247
|
+
offer_id: offer_id
|
248
|
+
})
|
249
|
+
|
250
|
+
make(attributes.merge({
|
251
|
+
body: [:manage_buy_offer, op]
|
252
|
+
}))
|
253
|
+
end
|
183
254
|
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
amount:
|
194
|
-
price:
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
255
|
+
def create_passive_sell_offer(attributes = {})
|
256
|
+
buying = attributes[:buying]
|
257
|
+
if buying.is_a?(Array)
|
258
|
+
buying = Asset.send(*buying)
|
259
|
+
end
|
260
|
+
selling = attributes[:selling]
|
261
|
+
if selling.is_a?(Array)
|
262
|
+
selling = Asset.send(*selling)
|
263
|
+
end
|
264
|
+
amount = interpret_amount(attributes[:amount])
|
265
|
+
price = interpret_price(attributes[:price])
|
266
|
+
|
267
|
+
op = CreatePassiveSellOfferOp.new({
|
268
|
+
buying: buying,
|
269
|
+
selling: selling,
|
270
|
+
amount: amount,
|
271
|
+
price: price
|
272
|
+
})
|
273
|
+
|
274
|
+
make(attributes.merge({
|
275
|
+
body: [:create_passive_sell_offer, op]
|
276
|
+
}))
|
277
|
+
end
|
278
|
+
|
279
|
+
#
|
280
|
+
# Helper method to create a valid SetOptionsOp, wrapped
|
281
|
+
# in the necessary XDR structs to be included within a
|
282
|
+
# transactions `operations` array.
|
283
|
+
#
|
284
|
+
# @param [Hash] attributes the attributes to create the operation with
|
285
|
+
# @option attributes [Stellar::KeyPair] :inflation_dest
|
286
|
+
# @option attributes [Array<Stellar::AccountFlags>] :set flags to set
|
287
|
+
# @option attributes [Array<Stellar::AccountFlags>] :clear flags to clear
|
288
|
+
# @option attributes [String] :thresholds
|
289
|
+
# @option attributes [Stellar::Signer] :signer
|
290
|
+
#
|
291
|
+
# @return [Stellar::Operation] the built operation, containing a
|
292
|
+
# Stellar::SetOptionsOp body
|
293
|
+
def set_options(attributes = {})
|
294
|
+
op = SetOptionsOp.new
|
295
|
+
op.set_flags = Stellar::AccountFlags.make_mask attributes[:set]
|
296
|
+
op.clear_flags = Stellar::AccountFlags.make_mask attributes[:clear]
|
297
|
+
op.master_weight = attributes[:master_weight]
|
298
|
+
op.low_threshold = attributes[:low_threshold]
|
299
|
+
op.med_threshold = attributes[:med_threshold]
|
300
|
+
op.high_threshold = attributes[:high_threshold]
|
301
|
+
|
302
|
+
op.signer = attributes[:signer]
|
303
|
+
op.home_domain = attributes[:home_domain]
|
304
|
+
|
305
|
+
inflation_dest = attributes[:inflation_dest]
|
306
|
+
if inflation_dest
|
307
|
+
raise ArgumentError, "Bad :inflation_dest" unless inflation_dest.is_a?(Stellar::KeyPair)
|
308
|
+
op.inflation_dest = inflation_dest.account_id
|
309
|
+
end
|
201
310
|
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
# transactions `operations` array.
|
206
|
-
#
|
207
|
-
# @param [Hash] attributes the attributes to create the operation with
|
208
|
-
# @option attributes [Stellar::KeyPair] :inflation_dest
|
209
|
-
# @option attributes [Array<Stellar::AccountFlags>] :set flags to set
|
210
|
-
# @option attributes [Array<Stellar::AccountFlags>] :clear flags to clear
|
211
|
-
# @option attributes [String] :thresholds
|
212
|
-
# @option attributes [Stellar::Signer] :signer
|
213
|
-
#
|
214
|
-
# @return [Stellar::Operation] the built operation, containing a
|
215
|
-
# Stellar::SetOptionsOp body
|
216
|
-
def self.set_options(attributes={})
|
217
|
-
op = SetOptionsOp.new()
|
218
|
-
op.set_flags = Stellar::AccountFlags.make_mask attributes[:set]
|
219
|
-
op.clear_flags = Stellar::AccountFlags.make_mask attributes[:clear]
|
220
|
-
op.master_weight = attributes[:master_weight]
|
221
|
-
op.low_threshold = attributes[:low_threshold]
|
222
|
-
op.med_threshold = attributes[:med_threshold]
|
223
|
-
op.high_threshold = attributes[:high_threshold]
|
224
|
-
|
225
|
-
op.signer = attributes[:signer]
|
226
|
-
op.home_domain = attributes[:home_domain]
|
227
|
-
|
228
|
-
|
229
|
-
inflation_dest = attributes[:inflation_dest]
|
230
|
-
if inflation_dest
|
231
|
-
raise ArgumentError, "Bad :inflation_dest" unless inflation_dest.is_a?(Stellar::KeyPair)
|
232
|
-
op.inflation_dest = inflation_dest.account_id
|
311
|
+
make(attributes.merge({
|
312
|
+
body: [:set_options, op]
|
313
|
+
}))
|
233
314
|
end
|
234
315
|
|
316
|
+
#
|
317
|
+
# Helper method to create a valid AllowTrustOp, wrapped
|
318
|
+
# in the necessary XDR structs to be included within a
|
319
|
+
# transactions `operations` array.
|
320
|
+
#
|
321
|
+
# @param [Hash] attributes the attributes to create the operation with
|
322
|
+
# @option attributes [Stellar::KeyPair] :trustor
|
323
|
+
# @option attributes [Stellar::Asset] :asset
|
324
|
+
# @option attributes [Symbol, Boolean] :authorize :full, maintain_liabilities or :none
|
325
|
+
#
|
326
|
+
# @return [Stellar::Operation] the built operation, containing a
|
327
|
+
# Stellar::AllowTrustOp body
|
328
|
+
def allow_trust(attributes = {})
|
329
|
+
op = AllowTrustOp.new
|
330
|
+
|
331
|
+
trustor = attributes[:trustor]
|
332
|
+
authorize = attributes[:authorize]
|
333
|
+
asset = attributes[:asset]
|
334
|
+
if asset.is_a?(Array)
|
335
|
+
asset = Asset.send(*asset)
|
336
|
+
end
|
235
337
|
|
236
|
-
|
237
|
-
body:[:set_options, op]
|
238
|
-
}))
|
239
|
-
end
|
338
|
+
raise ArgumentError, "Bad :trustor" unless trustor.is_a?(Stellar::KeyPair)
|
240
339
|
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
# @option attributes [Stellar::Asset] :asset
|
249
|
-
#
|
250
|
-
# @return [Stellar::Operation] the built operation, containing a
|
251
|
-
# Stellar::AllowTrustOp body
|
252
|
-
def self.allow_trust(attributes={})
|
253
|
-
op = AllowTrustOp.new()
|
254
|
-
|
255
|
-
trustor = attributes[:trustor]
|
256
|
-
authorize = attributes[:authorize]
|
257
|
-
asset = Asset.send(*attributes[:asset])
|
258
|
-
|
259
|
-
raise ArgumentError, "Bad :trustor" unless trustor.is_a?(Stellar::KeyPair)
|
260
|
-
raise ArgumentError, "Bad :authorize" unless authorize == !!authorize # check boolean
|
261
|
-
raise ArgumentError, "Bad :asset" unless asset.type == Stellar::AssetType.asset_type_credit_alphanum4
|
262
|
-
|
263
|
-
atc = AllowTrustOp::Asset.new(:asset_type_credit_alphanum4, asset.code)
|
264
|
-
|
265
|
-
op.trustor = trustor.account_id
|
266
|
-
op.authorize = authorize
|
267
|
-
op.asset = atc
|
268
|
-
|
269
|
-
return make(attributes.merge({
|
270
|
-
body:[:allow_trust, op]
|
271
|
-
}))
|
272
|
-
end
|
340
|
+
op.authorize = case authorize
|
341
|
+
when :none, false then 0 # we handle booleans here for the backward compatibility
|
342
|
+
when :full, true then TrustLineFlags.authorized_flag.value
|
343
|
+
when :maintain_liabilities then TrustLineFlags.authorized_to_maintain_liabilities_flag.value
|
344
|
+
else
|
345
|
+
raise ArgumentError, "Bad :authorize, supported values: :full, :maintain_liabilities, :none"
|
346
|
+
end
|
273
347
|
|
274
|
-
|
275
|
-
# Helper method to create an account merge operation
|
276
|
-
#
|
277
|
-
# @param [Hash] attributes the attributes to create the operation with
|
278
|
-
# @option attributes [Stellar::KeyPair] :destination
|
279
|
-
#
|
280
|
-
# @return [Stellar::Operation] the built operation
|
281
|
-
def self.account_merge(attributes={})
|
282
|
-
destination = attributes[:destination]
|
283
|
-
|
284
|
-
raise ArgumentError, "Bad :destination" unless destination.is_a?(KeyPair)
|
285
|
-
|
286
|
-
# TODO: add source_account support
|
287
|
-
return make(attributes.merge({
|
288
|
-
body:[:account_merge, destination.account_id]
|
289
|
-
}))
|
290
|
-
end
|
348
|
+
raise ArgumentError, "Bad :asset" unless asset.type == Stellar::AssetType.asset_type_credit_alphanum4
|
291
349
|
|
292
|
-
|
293
|
-
# Helper method to create an inflation operation
|
294
|
-
#
|
295
|
-
# @param [Hash] attributes the attributes to create the operation with
|
296
|
-
# @option attributes [Integer] :sequence
|
297
|
-
#
|
298
|
-
# @return [Stellar::Operation] the built operation
|
299
|
-
def self.inflation(attributes={})
|
300
|
-
sequence = attributes[:sequence]
|
301
|
-
|
302
|
-
raise ArgumentError, "Bad :sequence #{sequence}" unless sequence.is_a?(Integer)
|
303
|
-
|
304
|
-
# TODO: add source_account support
|
305
|
-
return make(attributes.merge({
|
306
|
-
body:[:inflation]
|
307
|
-
}))
|
308
|
-
end
|
350
|
+
atc = AllowTrustOp::Asset.new(:asset_type_credit_alphanum4, asset.code)
|
309
351
|
|
310
|
-
|
311
|
-
|
312
|
-
#
|
313
|
-
# @param [Hash] attributes the attributes to create the operation with
|
314
|
-
# @option attributes [Integer] :sequence
|
315
|
-
#
|
316
|
-
# @return [Stellar::Operation] the built operation
|
317
|
-
def self.manage_data(attributes={})
|
318
|
-
op = ManageDataOp.new()
|
352
|
+
op.trustor = trustor.account_id
|
353
|
+
op.asset = atc
|
319
354
|
|
320
|
-
|
321
|
-
|
355
|
+
make(attributes.merge({
|
356
|
+
body: [:allow_trust, op]
|
357
|
+
}))
|
358
|
+
end
|
322
359
|
|
323
|
-
|
324
|
-
|
360
|
+
#
|
361
|
+
# Helper method to create an account merge operation
|
362
|
+
#
|
363
|
+
# @param [Hash] attributes the attributes to create the operation with
|
364
|
+
# @option attributes [Stellar::KeyPair] :destination
|
365
|
+
#
|
366
|
+
# @return [Stellar::Operation] the built operation
|
367
|
+
def account_merge(attributes = {})
|
368
|
+
destination = attributes[:destination]
|
369
|
+
|
370
|
+
raise ArgumentError, "Bad :destination" unless destination.is_a?(KeyPair)
|
371
|
+
|
372
|
+
# TODO: add source_account support
|
373
|
+
make(attributes.merge({
|
374
|
+
body: [:account_merge, destination.muxed_account]
|
375
|
+
}))
|
376
|
+
end
|
325
377
|
|
326
|
-
|
327
|
-
|
378
|
+
#
|
379
|
+
# Helper method to create an inflation operation
|
380
|
+
#
|
381
|
+
# @param [Hash] attributes the attributes to create the operation with
|
382
|
+
# @option attributes [Integer] :sequence
|
383
|
+
#
|
384
|
+
# @return [Stellar::Operation] the built operation
|
385
|
+
def inflation(attributes = {})
|
386
|
+
sequence = attributes[:sequence]
|
387
|
+
|
388
|
+
raise ArgumentError, "Bad :sequence #{sequence}" unless sequence.is_a?(Integer)
|
389
|
+
|
390
|
+
# TODO: add source_account support
|
391
|
+
make(attributes.merge({
|
392
|
+
body: [:inflation]
|
393
|
+
}))
|
328
394
|
end
|
329
395
|
|
330
|
-
|
331
|
-
|
396
|
+
#
|
397
|
+
# Helper method to create an manage data operation
|
398
|
+
#
|
399
|
+
# @param [Hash] attributes the attributes to create the operation with
|
400
|
+
# @option attributes [Integer] :sequence
|
401
|
+
#
|
402
|
+
# @return [Stellar::Operation] the built operation
|
403
|
+
def manage_data(attributes = {})
|
404
|
+
op = ManageDataOp.new
|
332
405
|
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
|
406
|
+
name = attributes[:name]
|
407
|
+
value = attributes[:value]
|
408
|
+
|
409
|
+
raise ArgumentError, "Invalid :name" unless name.is_a?(String)
|
410
|
+
raise ArgumentError, ":name too long" unless name.bytesize <= 64
|
337
411
|
|
338
|
-
|
339
|
-
|
412
|
+
if value.present?
|
413
|
+
raise ArgumentError, ":value too long" unless value.bytesize <= 64
|
414
|
+
end
|
340
415
|
|
341
|
-
|
416
|
+
op.data_name = name
|
417
|
+
op.data_value = value
|
342
418
|
|
343
|
-
|
419
|
+
make(attributes.merge({
|
420
|
+
body: [:manage_data, op]
|
421
|
+
}))
|
422
|
+
end
|
344
423
|
|
345
|
-
|
424
|
+
def bump_sequence(attributes = {})
|
425
|
+
op = BumpSequenceOp.new
|
346
426
|
|
347
|
-
|
348
|
-
body:[:bump_sequence, op]
|
349
|
-
}))
|
350
|
-
end
|
427
|
+
bump_to = attributes[:bump_to]
|
351
428
|
|
352
|
-
|
353
|
-
def self.extract_amount(a)
|
354
|
-
amount = interpret_amount(a.last)
|
355
|
-
asset = Stellar::Asset.send(*a[0...-1])
|
429
|
+
raise ArgumentError, ":bump_to too big" unless bump_to <= MAX_INT64
|
356
430
|
|
357
|
-
|
358
|
-
end
|
431
|
+
op.bump_to = bump_to
|
359
432
|
|
360
|
-
|
361
|
-
|
362
|
-
|
363
|
-
(BigDecimal(amount) * Stellar::ONE).floor
|
364
|
-
when Integer
|
365
|
-
amount * Stellar::ONE
|
366
|
-
when Numeric
|
367
|
-
(amount * Stellar::ONE).floor
|
368
|
-
else
|
369
|
-
raise ArgumentError, "Invalid amount type: #{amount.class}. Must be String or Numeric"
|
433
|
+
make(attributes.merge({
|
434
|
+
body: [:bump_sequence, op]
|
435
|
+
}))
|
370
436
|
end
|
371
|
-
end
|
372
437
|
|
438
|
+
private
|
439
|
+
|
440
|
+
def get_asset_amount(values)
|
441
|
+
amount = interpret_amount(values.last)
|
442
|
+
asset = if values[0].is_a?(Stellar::Asset)
|
443
|
+
values.first
|
444
|
+
else
|
445
|
+
Stellar::Asset.send(*values[0...-1])
|
446
|
+
end
|
373
447
|
|
374
|
-
|
375
|
-
|
376
|
-
|
377
|
-
|
378
|
-
|
379
|
-
|
380
|
-
|
381
|
-
|
382
|
-
|
383
|
-
|
384
|
-
|
448
|
+
[asset, amount]
|
449
|
+
end
|
450
|
+
|
451
|
+
def interpret_amount(amount)
|
452
|
+
case amount
|
453
|
+
when String
|
454
|
+
(BigDecimal(amount) * Stellar::ONE).floor
|
455
|
+
when Integer
|
456
|
+
amount * Stellar::ONE
|
457
|
+
when Numeric
|
458
|
+
(amount * Stellar::ONE).floor
|
459
|
+
else
|
460
|
+
raise ArgumentError, "Invalid amount type: #{amount.class}. Must be String or Numeric"
|
461
|
+
end
|
462
|
+
end
|
463
|
+
|
464
|
+
def interpret_price(price)
|
465
|
+
case price
|
466
|
+
when String
|
467
|
+
bd = BigDecimal(price)
|
468
|
+
Price.from_f(bd)
|
469
|
+
when Numeric
|
470
|
+
Price.from_f(price)
|
471
|
+
when Stellar::Price
|
472
|
+
price
|
473
|
+
else
|
474
|
+
raise ArgumentError, "Invalid price type: #{price.class}. Must be String, Numeric, or Stellar::Price"
|
475
|
+
end
|
385
476
|
end
|
386
477
|
end
|
387
478
|
end
|