diff --git a/CHANGELOG.md b/CHANGELOG.md index 5e4c040be..2e4ce1093 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ A breaking change will get clearly marked in this log. ## Unreleased +### Fix + +- Fixes the `type_i` enumeration field to accurately reflect liquidity pool effects ([#723](https://github.com/stellar/js-stellar-sdk/pull/723)). + ### Updates - Updates the following SEP-10 utility functions to include [client domain verification](https://github.com/stellar/stellar-protocol/blob/master/ecosystem/sep-0010.md#verifying-the-client-domain) functionality ([#720](https://github.com/stellar/js-stellar-sdk/pull/720)): @@ -12,6 +16,7 @@ A breaking change will get clearly marked in this log. - Updated `Utils.readChallengeTx()` to parse challenge transactions containing a `client_domain` ManageData operation - Updated `Utils.verifyChallengeTxSigners()` to verify an additional signature from the `clientSigningKey` keypair if a `client_domain` Manage Data operation is included in the challenge + ## [v9.0.0](https://github.com/stellar/js-stellar-sdk/compare/v9.0.0-beta.1...v9.0.0) This stable release adds **support for Protocol 18**. For details, you can refer to [CAP-38](https://stellar.org/protocol/cap-38) for XDR changes and [this document](https://docs.google.com/document/d/1pXL8kr1a2vfYSap9T67R-g72B_WWbaE1YsLMa04OgoU/view) for changes to the Horizon API. diff --git a/src/types/effects.ts b/src/types/effects.ts index dc61b0dd7..409730806 100644 --- a/src/types/effects.ts +++ b/src/types/effects.ts @@ -54,13 +54,15 @@ export enum EffectType { signer_sponsorship_created = 72, signer_sponsorship_updated = 73, signer_sponsorship_removed = 74, + // clawback effects claimable_balance_clawed_back = 80, - liquidity_pool_deposited = 81, - liquidity_pool_withdrew = 82, - liquidity_pool_trade = 83, - liquidity_pool_created = 84, - liquidity_pool_removed = 85, - liquidity_pool_revoked = 86, + // liquidity pool effects + liquidity_pool_deposited = 90, + liquidity_pool_withdrew = 91, + liquidity_pool_trade = 92, + liquidity_pool_created = 93, + liquidity_pool_removed = 94, + liquidity_pool_revoked = 95, } export interface BaseEffectRecord extends Horizon.BaseResponse { id: string;