stellar-base 0.21.0 → 0.23.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (130) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +10 -2
  3. data/{LICENSE.txt → LICENSE} +0 -0
  4. data/README.md +3 -4
  5. data/generated/stellar-base-generated.rb +25 -1
  6. data/generated/stellar/allow_trust_op.rb +3 -2
  7. data/generated/stellar/authenticated_message.rb +4 -4
  8. data/generated/stellar/authenticated_message/v0.rb +4 -4
  9. data/generated/stellar/change_trust_result_code.rb +1 -1
  10. data/generated/stellar/crypto_key_type.rb +8 -4
  11. data/generated/stellar/curve25519_public.rb +1 -1
  12. data/generated/stellar/curve25519_secret.rb +1 -1
  13. data/generated/stellar/envelope_type.rb +9 -5
  14. data/generated/stellar/fee_bump_transaction.rb +39 -0
  15. data/generated/stellar/fee_bump_transaction/ext.rb +24 -0
  16. data/generated/stellar/fee_bump_transaction/inner_tx.rb +25 -0
  17. data/generated/stellar/fee_bump_transaction_envelope.rb +22 -0
  18. data/generated/stellar/hmac_sha256_key.rb +1 -1
  19. data/generated/stellar/hmac_sha256_mac.rb +1 -1
  20. data/generated/stellar/inner_transaction_result.rb +56 -0
  21. data/generated/stellar/inner_transaction_result/ext.rb +24 -0
  22. data/generated/stellar/inner_transaction_result/result.rb +52 -0
  23. data/generated/stellar/inner_transaction_result_pair.rb +20 -0
  24. data/generated/stellar/ledger_close_meta.rb +23 -0
  25. data/generated/stellar/ledger_close_meta_v0.rb +35 -0
  26. data/generated/stellar/manage_buy_offer_result_code.rb +5 -4
  27. data/generated/stellar/manage_sell_offer_result_code.rb +12 -8
  28. data/generated/stellar/message_type.rb +6 -1
  29. data/generated/stellar/muxed_account.rb +35 -0
  30. data/generated/stellar/muxed_account/med25519.rb +22 -0
  31. data/generated/stellar/operation.rb +3 -3
  32. data/generated/stellar/operation/body.rb +2 -2
  33. data/generated/stellar/operation_result.rb +1 -1
  34. data/generated/stellar/operation_result/tr.rb +1 -1
  35. data/generated/stellar/operation_result_code.rb +3 -3
  36. data/generated/stellar/path_payment_strict_receive_op.rb +4 -4
  37. data/generated/stellar/path_payment_strict_receive_result_code.rb +21 -12
  38. data/generated/stellar/path_payment_strict_send_op.rb +6 -6
  39. data/generated/stellar/path_payment_strict_send_result_code.rb +20 -12
  40. data/generated/stellar/payment_op.rb +4 -4
  41. data/generated/stellar/peer_stats.rb +48 -0
  42. data/generated/stellar/signed_survey_request_message.rb +20 -0
  43. data/generated/stellar/signed_survey_response_message.rb +20 -0
  44. data/generated/stellar/stellar_message.rb +22 -12
  45. data/generated/stellar/survey_message_command_type.rb +20 -0
  46. data/generated/stellar/survey_request_message.rb +26 -0
  47. data/generated/stellar/survey_response_body.rb +23 -0
  48. data/generated/stellar/survey_response_message.rb +26 -0
  49. data/generated/stellar/topology_response_body.rb +25 -0
  50. data/generated/stellar/transaction.rb +2 -2
  51. data/generated/stellar/transaction_envelope.rb +17 -8
  52. data/generated/stellar/transaction_meta.rb +4 -0
  53. data/generated/stellar/transaction_meta_v2.rb +24 -0
  54. data/generated/stellar/transaction_result.rb +3 -0
  55. data/generated/stellar/transaction_result/result.rb +9 -3
  56. data/generated/stellar/transaction_result_code.rb +21 -14
  57. data/generated/stellar/transaction_result_meta.rb +22 -0
  58. data/generated/stellar/transaction_signature_payload.rb +3 -1
  59. data/generated/stellar/transaction_signature_payload/tagged_transaction.rb +7 -3
  60. data/generated/stellar/transaction_v0.rb +39 -0
  61. data/generated/stellar/transaction_v0/ext.rb +24 -0
  62. data/generated/stellar/transaction_v0_envelope.rb +22 -0
  63. data/generated/stellar/transaction_v1_envelope.rb +22 -0
  64. data/generated/stellar/trust_line_flags.rb +6 -2
  65. data/generated/stellar/upgrade_entry_meta.rb +20 -0
  66. data/lib/stellar-base.rb +27 -24
  67. data/lib/stellar/account_flags.rb +2 -4
  68. data/lib/stellar/asset.rb +6 -6
  69. data/lib/stellar/base.rb +1 -1
  70. data/lib/stellar/{base/compat.rb → compat.rb} +6 -7
  71. data/lib/stellar/concerns/transaction.rb +49 -0
  72. data/lib/stellar/convert.rb +2 -2
  73. data/lib/stellar/factories.rb +1 -3
  74. data/lib/stellar/fee_bump_transaction.rb +21 -0
  75. data/lib/stellar/key_pair.rb +9 -6
  76. data/lib/stellar/networks.rb +5 -7
  77. data/lib/stellar/operation.rb +426 -392
  78. data/lib/stellar/path_payment_strict_receive_result.rb +1 -2
  79. data/lib/stellar/price.rb +2 -4
  80. data/lib/stellar/signer_key.rb +4 -8
  81. data/lib/stellar/thresholds.rb +5 -7
  82. data/lib/stellar/transaction.rb +154 -187
  83. data/lib/stellar/transaction_builder.rb +149 -0
  84. data/lib/stellar/transaction_envelope.rb +40 -8
  85. data/lib/stellar/transaction_v0.rb +39 -0
  86. data/lib/stellar/util/continued_fraction.rb +19 -19
  87. data/lib/stellar/util/strkey.rb +39 -14
  88. data/lib/stellar/{base/version.rb → version.rb} +1 -1
  89. metadata +50 -204
  90. data/.gitignore +0 -17
  91. data/.travis.yml +0 -16
  92. data/.yardopts +0 -8
  93. data/CONTRIBUTING.md +0 -48
  94. data/Gemfile +0 -15
  95. data/Guardfile +0 -5
  96. data/Rakefile +0 -4
  97. data/examples/allow_trust.rb +0 -51
  98. data/examples/create_account.rb +0 -26
  99. data/examples/low_level_transaction_post.rb +0 -46
  100. data/examples/mid_level_transaction_post.rb +0 -33
  101. data/examples/non_native_payment.rb +0 -60
  102. data/examples/offer.rb +0 -75
  103. data/examples/transaction_merge.rb +0 -23
  104. data/ruby-stellar-base.gemspec +0 -34
  105. data/spec/lib/stellar/account_flags_spec.rb +0 -19
  106. data/spec/lib/stellar/asset_spec.rb +0 -45
  107. data/spec/lib/stellar/convert_spec.rb +0 -61
  108. data/spec/lib/stellar/key_pair_spec.rb +0 -251
  109. data/spec/lib/stellar/networks_spec.rb +0 -77
  110. data/spec/lib/stellar/operation_spec.rb +0 -133
  111. data/spec/lib/stellar/path_payment_strict_receive_result_spec.rb +0 -95
  112. data/spec/lib/stellar/price_spec.rb +0 -34
  113. data/spec/lib/stellar/signer_key_spec.rb +0 -26
  114. data/spec/lib/stellar/thresholds_spec.rb +0 -62
  115. data/spec/lib/stellar/transaction_envelope_spec.rb +0 -93
  116. data/spec/lib/stellar/transaction_spec.rb +0 -132
  117. data/spec/lib/stellar/util/strkey_spec.rb +0 -54
  118. data/spec/spec_helper.rb +0 -16
  119. data/spec/support/matchers/be_strkey.rb +0 -9
  120. data/spec/support/matchers/eq_bytes.rb +0 -5
  121. data/spec/support/matchers/have_length.rb +0 -5
  122. data/tasks/rspec.rake +0 -6
  123. data/tasks/travis.rake +0 -1
  124. data/tasks/xdr.rake +0 -45
  125. data/xdr/Stellar-SCP.x +0 -86
  126. data/xdr/Stellar-ledger-entries.x +0 -295
  127. data/xdr/Stellar-ledger.x +0 -318
  128. data/xdr/Stellar-overlay.x +0 -146
  129. data/xdr/Stellar-transaction.x +0 -901
  130. data/xdr/Stellar-types.x +0 -81
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: feb38eef272fff967b9499abba3f4374cfa1d9ed62c38266a1e51ee1ca019989
4
- data.tar.gz: 0d3457265d1fef82c7ebbdea198f59546edd4c6bf7411f7ddf73442d6eeeb129
3
+ metadata.gz: d47a957d6769b441707e5072b9de09576c87bb411787d10818e885680e59de69
4
+ data.tar.gz: '07820e81c7b00d7b6db48192095f5bd6ad497b3680383c85944030abaae60410'
5
5
  SHA512:
6
- metadata.gz: ebb31a2dc1383580580f205e69f180d56b53f4ed4b060d947bd2743f4ca6bb25062e64a2f0ab83cd511b4ed0ca06cf22ab3f040c2fba2f94222f70230a30e173
7
- data.tar.gz: 4e2f8d7798b1d43bc8ca12e8922e41b0a9960b85b607172053be23d4e023701b828b5041e7d392dc029ddfe2dd99d1eb4cfd65c510318bee06ae3f4785833df5
6
+ metadata.gz: 19b5c2836eaafa4ce5b53e5c33f373bc995428111d1463ffa3571ec0e3411c1dbec6ca319ac5689c138a2dfdd01e07fa5d3cca08fff5ba7f827f3d4d1f71ca54
7
+ data.tar.gz: 342be2d0102eea5d6fe61e137a4609ff1e562639aa994eb908f9f025625ee4585a39a9cb09daaceba6824129cfc1812890577101cb62f1ede4c5d6da5e6c23ea
@@ -6,13 +6,21 @@ file. This project adheres to [Semantic Versioning](http://semver.org/).
6
6
  As this project is pre 1.0, breaking changes may happen for minor version
7
7
  bumps. A breaking change will get clearly notified in this log.
8
8
 
9
- ## [0.21.0](https://github.com/bloom-solutions/ruby-stellar-base/compare/v0.21.0...v0.20.0) - 2019-10-04
9
+ ## [0.22.0](https://github.com/stellar/ruby-stellar-base/compare/v0.21.0...v0.22.0) - 2020-03-26
10
+ ### Added
11
+ - Add TransactionBuilder ([#54](https://github.com/stellar/ruby-stellar-base/issues/54))
12
+
13
+ ### Changed
14
+ - Regenerate XDR files ([#57](https://github.com/stellar/ruby-stellar-base/issues/57))
15
+ - Allow asset objects to be passed instead of list of parameters ([#59](https://github.com/stellar/ruby-stellar-base/issues/59))
16
+
17
+ ## [0.21.0](https://github.com/bloom-solutions/ruby-stellar-base/compare/v0.20.0...v0.21.0) - 2019-10-04
10
18
  ### Changed
11
19
  - [Stellar Protocol 12 compatibility](https://github.com/bloom-solutions/ruby-stellar-base/pull/51).
12
20
  - XDR changes for path payment
13
21
  - constant renames, which may cause breaking changes if referred to directly
14
22
 
15
- ## [0.20.0](https://github.com/bloom-solutions/ruby-stellar-base/compare/v0.20.0...v0.19.0) - 2019-05-22
23
+ ## [0.20.0](https://github.com/bloom-solutions/ruby-stellar-base/compare/v0.19.0...v0.20.0) - 2019-05-22
16
24
  ### Added
17
25
  - Stellar Protocol 11 compatibility (#48)
18
26
  - XDR changes for [CAP-0006 Buy Offers](https://github.com/stellar/stellar-protocol/blob/master/core/cap-0006.md)
File without changes
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Stellar::Base
2
2
 
3
- [![Build Status](https://travis-ci.org/bloom-solutions/ruby-stellar-base.svg)](https://travis-ci.org/bloom-solutions/ruby-stellar-base)
3
+ [![Build Status](https://travis-ci.org/stellar/ruby-stellar-base.svg)](https://travis-ci.org/stellar/ruby-stellar-base)
4
4
  [![Code Climate](https://codeclimate.com/github/stellar/ruby-stellar-base/badges/gpa.svg)](https://codeclimate.com/github/stellar/ruby-stellar-base)
5
5
 
6
6
  The stellar-base library is the lowest-level stellar helper library. It consists of classes
@@ -12,15 +12,14 @@ Add this line to your application's Gemfile:
12
12
 
13
13
  ```ruby
14
14
  gem 'stellar-base'
15
+ gem 'xdr', git: 'https://github.com/stellar/ruby-xdr.git', tag: 'v3.0.1'
15
16
  ```
16
17
 
17
18
  And then execute:
18
19
 
19
20
  $ bundle
20
21
 
21
- Or install it yourself as:
22
-
23
- $ gem install stellar-base
22
+ **Note** we need to add such explicit xdr dependency, because version 3.0.1 is not on RubyGems yet. When it's published, you can remove this line
24
23
 
25
24
  Also requires libsodium. Installable via `brew install libsodium` on OS X.
26
25
 
@@ -49,6 +49,7 @@ module Stellar
49
49
  autoload :AccountEntry
50
50
  autoload :TrustLineFlags
51
51
  MASK_TRUSTLINE_FLAGS = 1
52
+ MASK_TRUSTLINE_FLAGS_V13 = 3
52
53
  autoload :TrustLineEntry
53
54
  autoload :OfferEntryFlags
54
55
  MASK_OFFERENTRY_FLAGS = 1
@@ -60,6 +61,7 @@ end
60
61
  module Stellar
61
62
  include XDR::Namespace
62
63
 
64
+ autoload :MuxedAccount
63
65
  autoload :DecoratedSignature
64
66
  autoload :OperationType
65
67
  autoload :CreateAccountOp
@@ -79,9 +81,14 @@ module Stellar
79
81
  autoload :Memo
80
82
  autoload :TimeBounds
81
83
  MAX_OPS_PER_TX = 100
84
+ autoload :TransactionV0
85
+ autoload :TransactionV0Envelope
82
86
  autoload :Transaction
83
- autoload :TransactionSignaturePayload
87
+ autoload :TransactionV1Envelope
88
+ autoload :FeeBumpTransaction
89
+ autoload :FeeBumpTransactionEnvelope
84
90
  autoload :TransactionEnvelope
91
+ autoload :TransactionSignaturePayload
85
92
  autoload :ClaimOfferAtom
86
93
  autoload :CreateAccountResultCode
87
94
  autoload :CreateAccountResult
@@ -116,6 +123,8 @@ module Stellar
116
123
  autoload :OperationResultCode
117
124
  autoload :OperationResult
118
125
  autoload :TransactionResultCode
126
+ autoload :InnerTransactionResult
127
+ autoload :InnerTransactionResultPair
119
128
  autoload :TransactionResult
120
129
  end
121
130
  module Stellar
@@ -146,7 +155,12 @@ module Stellar
146
155
  LedgerEntryChanges = XDR::VarArray[LedgerEntryChange]
147
156
  autoload :OperationMeta
148
157
  autoload :TransactionMetaV1
158
+ autoload :TransactionMetaV2
149
159
  autoload :TransactionMeta
160
+ autoload :TransactionResultMeta
161
+ autoload :UpgradeEntryMeta
162
+ autoload :LedgerCloseMetaV0
163
+ autoload :LedgerCloseMeta
150
164
  end
151
165
  module Stellar
152
166
  include XDR::Namespace
@@ -160,6 +174,16 @@ module Stellar
160
174
  autoload :PeerAddress
161
175
  autoload :MessageType
162
176
  autoload :DontHave
177
+ autoload :SurveyMessageCommandType
178
+ autoload :SurveyRequestMessage
179
+ autoload :SignedSurveyRequestMessage
180
+ EncryptedBody = XDR::VarOpaque[64000]
181
+ autoload :SurveyResponseMessage
182
+ autoload :SignedSurveyResponseMessage
183
+ autoload :PeerStats
184
+ PeerStatList = XDR::VarArray[PeerStats, 25]
185
+ autoload :TopologyResponseBody
186
+ autoload :SurveyResponseBody
163
187
  autoload :StellarMessage
164
188
  autoload :AuthenticatedMessage
165
189
  end
@@ -21,7 +21,8 @@ require 'xdr'
21
21
  # }
22
22
  # asset;
23
23
  #
24
- # bool authorize;
24
+ # // 0, or any bitwise combination of TrustLineFlags
25
+ # uint32 authorize;
25
26
  # };
26
27
  #
27
28
  # ===========================================================================
@@ -33,6 +34,6 @@ module Stellar
33
34
 
34
35
  attribute :trustor, AccountID
35
36
  attribute :asset, Asset
36
- attribute :authorize, XDR::Bool
37
+ attribute :authorize, Uint32
37
38
  end
38
39
  end
@@ -9,10 +9,10 @@ require 'xdr'
9
9
  # {
10
10
  # case 0:
11
11
  # struct
12
- # {
13
- # uint64 sequence;
14
- # StellarMessage message;
15
- # HmacSha256Mac mac;
12
+ # {
13
+ # uint64 sequence;
14
+ # StellarMessage message;
15
+ # HmacSha256Mac mac;
16
16
  # } v0;
17
17
  # };
18
18
  #
@@ -6,10 +6,10 @@ require 'xdr'
6
6
  # === xdr source ============================================================
7
7
  #
8
8
  # struct
9
- # {
10
- # uint64 sequence;
11
- # StellarMessage message;
12
- # HmacSha256Mac mac;
9
+ # {
10
+ # uint64 sequence;
11
+ # StellarMessage message;
12
+ # HmacSha256Mac mac;
13
13
  # }
14
14
  #
15
15
  # ===========================================================================
@@ -16,7 +16,7 @@ require 'xdr'
16
16
  # // cannot create with a limit of 0
17
17
  # CHANGE_TRUST_LOW_RESERVE =
18
18
  # -4, // not enough funds to create a new trust line,
19
- # CHANGE_TRUST_SELF_NOT_ALLOWED = -5 // trusting self is not allowed
19
+ # CHANGE_TRUST_SELF_NOT_ALLOWED = -5 // trusting self is not allowed
20
20
  # };
21
21
  #
22
22
  # ===========================================================================
@@ -9,15 +9,19 @@ require 'xdr'
9
9
  # {
10
10
  # KEY_TYPE_ED25519 = 0,
11
11
  # KEY_TYPE_PRE_AUTH_TX = 1,
12
- # KEY_TYPE_HASH_X = 2
12
+ # KEY_TYPE_HASH_X = 2,
13
+ # // MUXED enum values for supported type are derived from the enum values
14
+ # // above by ORing them with 0x100
15
+ # KEY_TYPE_MUXED_ED25519 = 0x100
13
16
  # };
14
17
  #
15
18
  # ===========================================================================
16
19
  module Stellar
17
20
  class CryptoKeyType < XDR::Enum
18
- member :key_type_ed25519, 0
19
- member :key_type_pre_auth_tx, 1
20
- member :key_type_hash_x, 2
21
+ member :key_type_ed25519, 0
22
+ member :key_type_pre_auth_tx, 1
23
+ member :key_type_hash_x, 2
24
+ member :key_type_muxed_ed25519, 256
21
25
 
22
26
  seal
23
27
  end
@@ -7,7 +7,7 @@ require 'xdr'
7
7
  #
8
8
  # struct Curve25519Public
9
9
  # {
10
- # opaque key[32];
10
+ # opaque key[32];
11
11
  # };
12
12
  #
13
13
  # ===========================================================================
@@ -7,7 +7,7 @@ require 'xdr'
7
7
  #
8
8
  # struct Curve25519Secret
9
9
  # {
10
- # opaque key[32];
10
+ # opaque key[32];
11
11
  # };
12
12
  #
13
13
  # ===========================================================================
@@ -7,19 +7,23 @@ require 'xdr'
7
7
  #
8
8
  # enum EnvelopeType
9
9
  # {
10
+ # ENVELOPE_TYPE_TX_V0 = 0,
10
11
  # ENVELOPE_TYPE_SCP = 1,
11
12
  # ENVELOPE_TYPE_TX = 2,
12
13
  # ENVELOPE_TYPE_AUTH = 3,
13
- # ENVELOPE_TYPE_SCPVALUE = 4
14
+ # ENVELOPE_TYPE_SCPVALUE = 4,
15
+ # ENVELOPE_TYPE_TX_FEE_BUMP = 5
14
16
  # };
15
17
  #
16
18
  # ===========================================================================
17
19
  module Stellar
18
20
  class EnvelopeType < XDR::Enum
19
- member :envelope_type_scp, 1
20
- member :envelope_type_tx, 2
21
- member :envelope_type_auth, 3
22
- member :envelope_type_scpvalue, 4
21
+ member :envelope_type_tx_v0, 0
22
+ member :envelope_type_scp, 1
23
+ member :envelope_type_tx, 2
24
+ member :envelope_type_auth, 3
25
+ member :envelope_type_scpvalue, 4
26
+ member :envelope_type_tx_fee_bump, 5
23
27
 
24
28
  seal
25
29
  end
@@ -0,0 +1,39 @@
1
+ # This code was automatically generated using xdrgen
2
+ # DO NOT EDIT or your changes may be overwritten
3
+
4
+ require 'xdr'
5
+
6
+ # === xdr source ============================================================
7
+ #
8
+ # struct FeeBumpTransaction
9
+ # {
10
+ # MuxedAccount feeSource;
11
+ # int64 fee;
12
+ # union switch (EnvelopeType type)
13
+ # {
14
+ # case ENVELOPE_TYPE_TX:
15
+ # TransactionV1Envelope v1;
16
+ # }
17
+ # innerTx;
18
+ # union switch (int v)
19
+ # {
20
+ # case 0:
21
+ # void;
22
+ # }
23
+ # ext;
24
+ # };
25
+ #
26
+ # ===========================================================================
27
+ module Stellar
28
+ class FeeBumpTransaction < XDR::Struct
29
+ include XDR::Namespace
30
+
31
+ autoload :InnerTx
32
+ autoload :Ext
33
+
34
+ attribute :fee_source, MuxedAccount
35
+ attribute :fee, Int64
36
+ attribute :inner_tx, InnerTx
37
+ attribute :ext, Ext
38
+ end
39
+ end
@@ -0,0 +1,24 @@
1
+ # This code was automatically generated using xdrgen
2
+ # DO NOT EDIT or your changes may be overwritten
3
+
4
+ require 'xdr'
5
+
6
+ # === xdr source ============================================================
7
+ #
8
+ # union switch (int v)
9
+ # {
10
+ # case 0:
11
+ # void;
12
+ # }
13
+ #
14
+ # ===========================================================================
15
+ module Stellar
16
+ class FeeBumpTransaction
17
+ class Ext < XDR::Union
18
+ switch_on XDR::Int, :v
19
+
20
+ switch 0
21
+
22
+ end
23
+ end
24
+ end
@@ -0,0 +1,25 @@
1
+ # This code was automatically generated using xdrgen
2
+ # DO NOT EDIT or your changes may be overwritten
3
+
4
+ require 'xdr'
5
+
6
+ # === xdr source ============================================================
7
+ #
8
+ # union switch (EnvelopeType type)
9
+ # {
10
+ # case ENVELOPE_TYPE_TX:
11
+ # TransactionV1Envelope v1;
12
+ # }
13
+ #
14
+ # ===========================================================================
15
+ module Stellar
16
+ class FeeBumpTransaction
17
+ class InnerTx < XDR::Union
18
+ switch_on EnvelopeType, :type
19
+
20
+ switch :envelope_type_tx, :v1
21
+
22
+ attribute :v1, TransactionV1Envelope
23
+ end
24
+ end
25
+ end
@@ -0,0 +1,22 @@
1
+ # This code was automatically generated using xdrgen
2
+ # DO NOT EDIT or your changes may be overwritten
3
+
4
+ require 'xdr'
5
+
6
+ # === xdr source ============================================================
7
+ #
8
+ # struct FeeBumpTransactionEnvelope
9
+ # {
10
+ # FeeBumpTransaction tx;
11
+ # /* Each decorated signature is a signature over the SHA256 hash of
12
+ # * a TransactionSignaturePayload */
13
+ # DecoratedSignature signatures<20>;
14
+ # };
15
+ #
16
+ # ===========================================================================
17
+ module Stellar
18
+ class FeeBumpTransactionEnvelope < XDR::Struct
19
+ attribute :tx, FeeBumpTransaction
20
+ attribute :signatures, XDR::VarArray[DecoratedSignature, 20]
21
+ end
22
+ end
@@ -7,7 +7,7 @@ require 'xdr'
7
7
  #
8
8
  # struct HmacSha256Key
9
9
  # {
10
- # opaque key[32];
10
+ # opaque key[32];
11
11
  # };
12
12
  #
13
13
  # ===========================================================================
@@ -7,7 +7,7 @@ require 'xdr'
7
7
  #
8
8
  # struct HmacSha256Mac
9
9
  # {
10
- # opaque mac[32];
10
+ # opaque mac[32];
11
11
  # };
12
12
  #
13
13
  # ===========================================================================
@@ -0,0 +1,56 @@
1
+ # This code was automatically generated using xdrgen
2
+ # DO NOT EDIT or your changes may be overwritten
3
+
4
+ require 'xdr'
5
+
6
+ # === xdr source ============================================================
7
+ #
8
+ # struct InnerTransactionResult
9
+ # {
10
+ # // Always 0. Here for binary compatibility.
11
+ # int64 feeCharged;
12
+ #
13
+ # union switch (TransactionResultCode code)
14
+ # {
15
+ # // txFEE_BUMP_INNER_SUCCESS is not included
16
+ # case txSUCCESS:
17
+ # case txFAILED:
18
+ # OperationResult results<>;
19
+ # case txTOO_EARLY:
20
+ # case txTOO_LATE:
21
+ # case txMISSING_OPERATION:
22
+ # case txBAD_SEQ:
23
+ # case txBAD_AUTH:
24
+ # case txINSUFFICIENT_BALANCE:
25
+ # case txNO_ACCOUNT:
26
+ # case txINSUFFICIENT_FEE:
27
+ # case txBAD_AUTH_EXTRA:
28
+ # case txINTERNAL_ERROR:
29
+ # case txNOT_SUPPORTED:
30
+ # // txFEE_BUMP_INNER_FAILED is not included
31
+ # void;
32
+ # }
33
+ # result;
34
+ #
35
+ # // reserved for future use
36
+ # union switch (int v)
37
+ # {
38
+ # case 0:
39
+ # void;
40
+ # }
41
+ # ext;
42
+ # };
43
+ #
44
+ # ===========================================================================
45
+ module Stellar
46
+ class InnerTransactionResult < XDR::Struct
47
+ include XDR::Namespace
48
+
49
+ autoload :Result
50
+ autoload :Ext
51
+
52
+ attribute :fee_charged, Int64
53
+ attribute :result, Result
54
+ attribute :ext, Ext
55
+ end
56
+ end