@stellar/stellar-base 11.1.0 → 12.0.0
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.
- package/CHANGELOG.md +11 -2
- package/dist/stellar-base.js +152 -142
- package/dist/stellar-base.min.js +1 -1
- package/lib/account.js +4 -4
- package/lib/address.js +4 -4
- package/lib/asset.js +4 -4
- package/lib/auth.js +3 -3
- package/lib/claimant.js +4 -4
- package/lib/contract.js +4 -4
- package/lib/events.js +2 -2
- package/lib/fee_bump_transaction.js +9 -9
- package/lib/get_liquidity_pool_id.js +1 -1
- package/lib/index.js +9 -1
- package/lib/jsxdr.js +12 -0
- package/lib/keypair.js +4 -4
- package/lib/liquidity_pool_asset.js +5 -5
- package/lib/liquidity_pool_id.js +4 -4
- package/lib/memo.js +4 -4
- package/lib/muxed_account.js +4 -4
- package/lib/numbers/int128.js +8 -8
- package/lib/numbers/int256.js +8 -8
- package/lib/numbers/sc_int.js +8 -8
- package/lib/numbers/uint128.js +8 -8
- package/lib/numbers/uint256.js +8 -8
- package/lib/numbers/xdr_large_int.js +5 -5
- package/lib/operation.js +4 -4
- package/lib/operations/account_merge.js +1 -1
- package/lib/operations/allow_trust.js +1 -1
- package/lib/operations/begin_sponsoring_future_reserves.js +1 -1
- package/lib/operations/bump_sequence.js +1 -1
- package/lib/operations/change_trust.js +1 -1
- package/lib/operations/claim_claimable_balance.js +1 -1
- package/lib/operations/clawback.js +1 -1
- package/lib/operations/clawback_claimable_balance.js +1 -1
- package/lib/operations/create_account.js +1 -1
- package/lib/operations/create_claimable_balance.js +1 -1
- package/lib/operations/create_passive_sell_offer.js +1 -1
- package/lib/operations/end_sponsoring_future_reserves.js +1 -1
- package/lib/operations/extend_footprint_ttl.js +1 -1
- package/lib/operations/inflation.js +1 -1
- package/lib/operations/invoke_host_function.js +5 -5
- package/lib/operations/liquidity_pool_deposit.js +1 -1
- package/lib/operations/liquidity_pool_withdraw.js +1 -1
- package/lib/operations/manage_buy_offer.js +1 -1
- package/lib/operations/manage_data.js +1 -1
- package/lib/operations/manage_sell_offer.js +1 -1
- package/lib/operations/path_payment_strict_receive.js +1 -1
- package/lib/operations/path_payment_strict_send.js +1 -1
- package/lib/operations/payment.js +1 -1
- package/lib/operations/restore_footprint.js +1 -1
- package/lib/operations/revoke_sponsorship.js +1 -1
- package/lib/operations/set_options.js +1 -1
- package/lib/operations/set_trustline_flags.js +1 -1
- package/lib/scval.js +5 -5
- package/lib/signerkey.js +4 -4
- package/lib/soroban.js +8 -8
- package/lib/sorobandata_builder.js +5 -5
- package/lib/strkey.js +5 -5
- package/lib/transaction.js +9 -9
- package/lib/transaction_base.js +4 -4
- package/lib/transaction_builder.js +10 -10
- package/lib/util/bignumber.js +1 -1
- package/lib/util/continued_fraction.js +5 -5
- package/lib/util/decode_encode_muxed_account.js +1 -1
- package/lib/xdr.js +1 -1
- package/package.json +12 -12
- package/types/index.d.ts +38 -0
package/CHANGELOG.md
CHANGED
|
@@ -3,13 +3,22 @@
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
## [`
|
|
6
|
+
## [`v12.0.0`](https://github.com/stellar/js-stellar-base/compare/v11.0.1...v12.0.0)
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
This is a re-tag of v12.0.0-rc.1 with only developer dependency updates in-between.
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
## [`v12.0.0-rc.1`](https://github.com/stellar/js-stellar-base/compare/v11.0.1...v12.0.0-rc.1)
|
|
12
|
+
|
|
13
|
+
### Breaking Changes
|
|
9
14
|
* The generated XDR has been upgraded to match the upcoming Protocol 21, namely [stellar/stellar-xdr@`1a04392`](https://github.com/stellar/stellar-xdr/commit/1a04392432dacc0092caaeae22a600ea1af3c6a5) ([#738](https://github.com/stellar/js-stellar-base/pull/738)).
|
|
10
15
|
|
|
16
|
+
### Added
|
|
17
|
+
* To facilitate serialization and deserialization for downstream systems, this package now exports `cereal.XdrWriter` and `cereal.XdrReader` which come directly from `@stellar/js-xdr` ([#744](https://github.com/stellar/js-stellar-base/pull/744)).
|
|
18
|
+
|
|
11
19
|
### Fixed
|
|
12
20
|
* Updated various dependencies ([#737](https://github.com/stellar/js-stellar-base/pull/737), [#739](https://github.com/stellar/js-stellar-base/pull/739)).
|
|
21
|
+
* `Buffer` and `Uint8Array` compatibility has improved in `StrKey` ([#746](https://github.com/stellar/js-stellar-base/pull/746)).
|
|
13
22
|
|
|
14
23
|
|
|
15
24
|
## [`v11.0.1`](https://github.com/stellar/js-stellar-base/compare/v11.0.0...v11.0.1)
|