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,5 +1,5 @@
|
|
1
1
|
module Stellar
|
2
|
-
class
|
2
|
+
class PathPaymentStrictReceiveResult
|
3
3
|
# send_amount returns the actual amount paid for the corresponding
|
4
4
|
# PathPaymentOp to this result.
|
5
5
|
#
|
@@ -8,10 +8,9 @@ module Stellar
|
|
8
8
|
return s.last.amount if s.offers.blank?
|
9
9
|
|
10
10
|
source_asset = s.offers.first.asset_bought
|
11
|
-
source_offers = s.offers.take_while{|o| o.asset_bought == source_asset}
|
11
|
+
source_offers = s.offers.take_while { |o| o.asset_bought == source_asset }
|
12
12
|
|
13
13
|
source_offers.map(&:amount_bought).sum
|
14
14
|
end
|
15
|
-
|
16
15
|
end
|
17
16
|
end
|
data/lib/stellar/price.rb
CHANGED
@@ -1,8 +1,6 @@
|
|
1
1
|
module Stellar
|
2
|
-
|
3
2
|
# reopen class
|
4
3
|
class Price
|
5
|
-
|
6
4
|
MAX_PRECISION = (2**31) - 1
|
7
5
|
|
8
6
|
def self.from_f(number)
|
@@ -14,7 +12,7 @@ module Stellar
|
|
14
12
|
end
|
15
13
|
|
16
14
|
def invert
|
17
|
-
self.class.new(n:d,d:n)
|
15
|
+
self.class.new(n: d, d: n)
|
18
16
|
end
|
19
17
|
|
20
18
|
def to_f
|
@@ -29,4 +27,4 @@ module Stellar
|
|
29
27
|
"#<Stellar::Price #{self}>"
|
30
28
|
end
|
31
29
|
end
|
32
|
-
end
|
30
|
+
end
|
data/lib/stellar/signer_key.rb
CHANGED
@@ -1,6 +1,5 @@
|
|
1
1
|
module Stellar
|
2
2
|
class SignerKey
|
3
|
-
|
4
3
|
PREIMAGE_LENGTH = 32
|
5
4
|
|
6
5
|
def self.ed25519(keypair)
|
@@ -8,16 +7,14 @@ module Stellar
|
|
8
7
|
new(:signer_key_type_ed25519, keypair.raw_public_key)
|
9
8
|
end
|
10
9
|
|
11
|
-
|
12
10
|
def self.preauthorized_transaction(tx)
|
13
11
|
new(:signer_key_type_pre_auth_tx, tx.hash)
|
14
12
|
end
|
15
13
|
|
16
|
-
|
17
14
|
def self.hash_x(preimage)
|
18
|
-
raise ArgumentError, "Must be string" unless preimage.is_a?(String)
|
15
|
+
raise ArgumentError, "Must be string" unless preimage.is_a?(String)
|
19
16
|
raise ArgumentError, "Must be 32 bytes" unless preimage.bytesize == PREIMAGE_LENGTH
|
20
|
-
|
17
|
+
|
21
18
|
hash_x = Digest::SHA256.digest(preimage)
|
22
19
|
new(:signer_key_type_hash_x, hash_x)
|
23
20
|
end
|
@@ -37,14 +34,13 @@ module Stellar
|
|
37
34
|
end
|
38
35
|
|
39
36
|
def inspect
|
40
|
-
label = switch.to_s
|
41
|
-
"#<Stellar::SignerKey #{
|
37
|
+
# label = switch.to_s
|
38
|
+
"#<Stellar::SignerKey #{self}>"
|
42
39
|
end
|
43
40
|
|
44
41
|
def signature_hint
|
45
42
|
# take last 4 bytes
|
46
43
|
value.to_xdr.slice(-4, 4)
|
47
44
|
end
|
48
|
-
|
49
45
|
end
|
50
46
|
end
|
data/lib/stellar/thresholds.rb
CHANGED
@@ -3,10 +3,9 @@ module Stellar
|
|
3
3
|
COMPONENTS = [:master_weight, :low, :medium, :high]
|
4
4
|
VALID_RANGE = 0..255
|
5
5
|
|
6
|
-
def make(thresholds={})
|
7
|
-
|
6
|
+
def make(thresholds = {})
|
8
7
|
# error if any of the needed components are not provided
|
9
|
-
if COMPONENTS.any?{|c| thresholds[c].blank? }
|
8
|
+
if COMPONENTS.any? { |c| thresholds[c].blank? }
|
10
9
|
raise ArgumentError, "invalid thresholds hash, must have #{COMPONENTS.inspect} keys, had: #{thresholds.keys.inspect}"
|
11
10
|
end
|
12
11
|
|
@@ -22,7 +21,6 @@ module Stellar
|
|
22
21
|
end
|
23
22
|
end
|
24
23
|
|
25
|
-
|
26
24
|
thresholds.values_at(*COMPONENTS).pack("C*")
|
27
25
|
end
|
28
26
|
|
@@ -30,9 +28,9 @@ module Stellar
|
|
30
28
|
master_weight, low, medium, high = combined.unpack("C*")
|
31
29
|
{
|
32
30
|
master_weight: master_weight,
|
33
|
-
low:
|
34
|
-
medium:
|
35
|
-
high:
|
31
|
+
low: low,
|
32
|
+
medium: medium,
|
33
|
+
high: high
|
36
34
|
}
|
37
35
|
end
|
38
36
|
end
|
data/lib/stellar/transaction.rb
CHANGED
@@ -1,208 +1,187 @@
|
|
1
1
|
module Stellar
|
2
2
|
class Transaction
|
3
|
+
include Stellar::Concerns::Transaction
|
3
4
|
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
#
|
11
|
-
# @see Stellar::Operation.path_payment
|
12
|
-
def self.path_payment(attributes={})
|
13
|
-
make :path_payment, attributes
|
14
|
-
end
|
5
|
+
class << self
|
6
|
+
#
|
7
|
+
# @see Stellar::Operation.payment
|
8
|
+
def payment(attributes = {})
|
9
|
+
make :payment, attributes
|
10
|
+
end
|
15
11
|
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
12
|
+
#
|
13
|
+
# @see Stellar::Operation.path_payment
|
14
|
+
def path_payment(attributes = {})
|
15
|
+
make :path_payment, attributes
|
16
|
+
end
|
21
17
|
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
18
|
+
#
|
19
|
+
# @see Stellar::Operation.path_payment_strict_receive
|
20
|
+
def path_payment_strict_receive(attributes = {})
|
21
|
+
make :path_payment_strict_receive, attributes
|
22
|
+
end
|
27
23
|
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
24
|
+
#
|
25
|
+
# @see Stellar::Operation.path_payment_strict_send
|
26
|
+
def path_payment_strict_send(attributes = {})
|
27
|
+
make :path_payment_strict_send, attributes
|
28
|
+
end
|
33
29
|
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
30
|
+
#
|
31
|
+
# @see Stellar::Operation.create_account
|
32
|
+
def create_account(attributes = {})
|
33
|
+
make :create_account, attributes
|
34
|
+
end
|
39
35
|
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
36
|
+
#
|
37
|
+
# @see Stellar::Operation.change_trust
|
38
|
+
def change_trust(attributes = {})
|
39
|
+
make :change_trust, attributes
|
40
|
+
end
|
45
41
|
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
42
|
+
#
|
43
|
+
# @see Stellar::Operation.manage_sell_offer
|
44
|
+
def manage_sell_offer(attributes = {})
|
45
|
+
make :manage_sell_offer, attributes
|
46
|
+
end
|
51
47
|
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
48
|
+
#
|
49
|
+
# @see Stellar::Operation.manage_buy_offer
|
50
|
+
def manage_buy_offer(attributes = {})
|
51
|
+
make :manage_buy_offer, attributes
|
52
|
+
end
|
57
53
|
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
54
|
+
#
|
55
|
+
# @see Stellar::Operation.create_passive_sell_offer
|
56
|
+
def create_passive_sell_offer(attributes = {})
|
57
|
+
make :create_passive_sell_offer, attributes
|
58
|
+
end
|
63
59
|
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
60
|
+
#
|
61
|
+
# @see Stellar::Operation.set_options
|
62
|
+
def set_options(attributes = {})
|
63
|
+
make :set_options, attributes
|
64
|
+
end
|
69
65
|
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
66
|
+
#
|
67
|
+
# @see Stellar::Operation.allow_trust
|
68
|
+
def allow_trust(attributes = {})
|
69
|
+
make :allow_trust, attributes
|
70
|
+
end
|
75
71
|
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
72
|
+
#
|
73
|
+
# @see Stellar::Operation.account_merge
|
74
|
+
def account_merge(attributes = {})
|
75
|
+
make :account_merge, attributes
|
76
|
+
end
|
81
77
|
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
# operation_type.
|
87
|
-
#
|
88
|
-
# @see Stellar::Operation
|
89
|
-
#
|
90
|
-
# @param operation_type [Symbol] the operation to use
|
91
|
-
# @param attributes={} [Hash] attributes to use for both the transaction and the operation
|
92
|
-
#
|
93
|
-
# @return [Stellar::Transaction] the resulting transaction
|
94
|
-
def self.make(operation_type, attributes={})
|
95
|
-
for_account(attributes).tap do |result|
|
96
|
-
result.operations << Operation.send(operation_type, attributes)
|
78
|
+
#
|
79
|
+
# @see Stellar::Operation.inflation
|
80
|
+
def inflation(attributes = {})
|
81
|
+
make :inflation, attributes
|
97
82
|
end
|
98
|
-
end
|
99
83
|
|
84
|
+
#
|
85
|
+
# @see Stellar::Operation.manage_data
|
86
|
+
def manage_data(attributes = {})
|
87
|
+
make :manage_data, attributes
|
88
|
+
end
|
100
89
|
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
#
|
106
|
-
#
|
107
|
-
# @param attributes={} [type] [description]
|
108
|
-
#
|
109
|
-
# @return [Stellar::Transaction] the resulting skeleton
|
110
|
-
def self.for_account(attributes={})
|
111
|
-
account = attributes[:account]
|
112
|
-
sequence = attributes[:sequence]
|
113
|
-
fee = attributes[:fee]
|
114
|
-
|
115
|
-
raise ArgumentError, "Bad :account" unless account.is_a?(KeyPair)
|
116
|
-
raise ArgumentError, "Bad :sequence #{sequence}" unless sequence.is_a?(Integer)
|
117
|
-
raise ArgumentError, "Bad :fee #{sequence}" if fee.present? && !fee.is_a?(Integer)
|
118
|
-
|
119
|
-
new.tap do |result|
|
120
|
-
result.seq_num = sequence
|
121
|
-
result.fee = fee
|
122
|
-
result.memo = make_memo(attributes[:memo])
|
123
|
-
result.source_account = account.account_id
|
124
|
-
result.apply_defaults
|
90
|
+
#
|
91
|
+
# @see Stellar::Operation.manage_data
|
92
|
+
def bump_sequence(attributes = {})
|
93
|
+
make :bump_sequence, attributes
|
125
94
|
end
|
126
|
-
end
|
127
95
|
|
128
|
-
|
129
|
-
|
130
|
-
|
96
|
+
#
|
97
|
+
# DEPRECATED
|
98
|
+
#
|
99
|
+
# All methods calling make() have been deprecated in favor of Stellar::TransactionBuilder.
|
100
|
+
# These functions only create single-operation transactions and essentially duplicate the
|
101
|
+
# methods provided by Stellar::Operation. Stellar::TransactionBuilder enables the construction
|
102
|
+
# of multi-operation transactions and mirrors the functionality provided by the Python and
|
103
|
+
# JavaScript SDKs.
|
104
|
+
#
|
105
|
+
# Helper method to create a transaction with a single
|
106
|
+
# operation of the provided type. See class methods
|
107
|
+
# on Stellar::Operation for available values for
|
108
|
+
# operation_type.
|
109
|
+
#
|
110
|
+
# @see Stellar::Operation
|
111
|
+
#
|
112
|
+
# @param operation_type [Symbol] the operation to use
|
113
|
+
# @param attributes={} [Hash] attributes to use for both the transaction and the operation
|
114
|
+
#
|
115
|
+
# @return [Stellar::Transaction] the resulting transaction
|
116
|
+
def make(operation_type, attributes = {})
|
117
|
+
Stellar::Deprecation.warn(
|
118
|
+
"Transaction.#{operation_type} is deprecated. Use Stellar::TransactionBuilder instead."
|
119
|
+
)
|
120
|
+
for_account(attributes).tap do |result|
|
121
|
+
result.operations << Operation.send(operation_type, attributes)
|
122
|
+
end
|
123
|
+
end
|
131
124
|
|
132
|
-
|
133
|
-
|
134
|
-
|
125
|
+
#
|
126
|
+
# Helper method to create the skeleton of a transaction.
|
127
|
+
# The resulting transaction will have its source account,
|
128
|
+
# sequence, fee, min ledger and max ledger set.
|
129
|
+
#
|
130
|
+
#
|
131
|
+
# @param attributes={} [type] [description]
|
132
|
+
#
|
133
|
+
# @return [Stellar::Transaction] the resulting skeleton
|
134
|
+
def for_account(attributes = {})
|
135
|
+
account = attributes[:account]
|
136
|
+
sequence = attributes[:sequence]
|
137
|
+
fee = attributes[:fee]
|
138
|
+
|
139
|
+
raise ArgumentError, "Bad :account" unless account.is_a?(KeyPair)
|
140
|
+
raise ArgumentError, "Bad :sequence #{sequence}" unless sequence.is_a?(Integer)
|
141
|
+
raise ArgumentError, "Bad :fee #{sequence}" if fee.present? && !fee.is_a?(Integer)
|
142
|
+
|
143
|
+
new.tap do |result|
|
144
|
+
result.seq_num = sequence
|
145
|
+
result.fee = fee
|
146
|
+
result.memo = make_memo(attributes[:memo])
|
147
|
+
result.source_account = account.muxed_account
|
148
|
+
result.apply_defaults
|
149
|
+
end
|
150
|
+
end
|
135
151
|
|
136
|
-
|
137
|
-
|
152
|
+
private
|
153
|
+
|
154
|
+
def make_memo(memo)
|
155
|
+
case memo
|
156
|
+
when Stellar::Memo
|
157
|
+
memo
|
158
|
+
when nil
|
159
|
+
nil
|
160
|
+
when Integer
|
161
|
+
Memo.new(:memo_id, memo)
|
162
|
+
when String
|
163
|
+
Memo.new(:memo_text, memo)
|
164
|
+
when Array
|
165
|
+
t, val = *memo
|
166
|
+
Memo.new(:"memo_#{t}", val)
|
167
|
+
else
|
168
|
+
raise ArgumentError, "Bad :memo"
|
169
|
+
end
|
170
|
+
end
|
138
171
|
end
|
139
172
|
|
140
|
-
# Returns the string of bytes that, when hashed, provide the value which
|
141
|
-
# should be signed to create a valid stellar transaciton signature
|
142
173
|
def signature_base
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
Stellar.current_network_id + Stellar::EnvelopeType.to_xdr(val)
|
174
|
+
tagged_tx = Stellar::TransactionSignaturePayload::TaggedTransaction.new(:envelope_type_tx, self)
|
175
|
+
Stellar::TransactionSignaturePayload.new(
|
176
|
+
network_id: Stellar.current_network_id,
|
177
|
+
tagged_transaction: tagged_tx
|
178
|
+
).to_xdr
|
150
179
|
end
|
151
180
|
|
152
181
|
def to_envelope(*key_pairs)
|
153
182
|
signatures = (key_pairs || []).map(&method(:sign_decorated))
|
154
183
|
|
155
|
-
TransactionEnvelope.
|
156
|
-
:signatures => signatures,
|
157
|
-
:tx => self
|
158
|
-
})
|
159
|
-
end
|
160
|
-
|
161
|
-
def merge(other)
|
162
|
-
cloned = Marshal.load Marshal.dump(self)
|
163
|
-
cloned.operations += other.to_operations
|
164
|
-
cloned
|
165
|
-
end
|
166
|
-
|
167
|
-
|
168
|
-
#
|
169
|
-
# Extracts the operations from this single transaction,
|
170
|
-
# setting the source account on the extracted operations.
|
171
|
-
#
|
172
|
-
# Useful for merging transactions.
|
173
|
-
#
|
174
|
-
# @return [Array<Operation>] the operations
|
175
|
-
def to_operations
|
176
|
-
cloned = Marshal.load Marshal.dump(operations)
|
177
|
-
operations.each do |op|
|
178
|
-
op.source_account ||= self.source_account
|
179
|
-
end
|
180
|
-
end
|
181
|
-
|
182
|
-
def apply_defaults
|
183
|
-
self.operations ||= []
|
184
|
-
self.fee ||= 100
|
185
|
-
self.memo ||= Memo.new(:memo_none)
|
186
|
-
self.ext ||= Stellar::Transaction::Ext.new 0
|
187
|
-
end
|
188
|
-
|
189
|
-
private
|
190
|
-
def self.make_memo(memo)
|
191
|
-
case memo
|
192
|
-
when Stellar::Memo ;
|
193
|
-
memo
|
194
|
-
when nil ;
|
195
|
-
nil
|
196
|
-
when Integer ;
|
197
|
-
Memo.new(:memo_id, memo)
|
198
|
-
when String ;
|
199
|
-
Memo.new(:memo_text, memo)
|
200
|
-
when Array ;
|
201
|
-
t, val = *memo
|
202
|
-
Memo.new(:"memo_#{t}", val)
|
203
|
-
else
|
204
|
-
raise ArgumentError, "Bad :memo"
|
205
|
-
end
|
184
|
+
TransactionEnvelope.v1(signatures: signatures, tx: self)
|
206
185
|
end
|
207
186
|
end
|
208
187
|
end
|