fix AMM ledger object's LPTokenBalance type to IssuedCurrencyAmount (#2621)

This commit is contained in:
Omar Khan
2024-01-21 20:50:47 -05:00
committed by GitHub
parent 1efb9d1e9c
commit b2c96714a8
2 changed files with 4 additions and 1 deletions

View File

@@ -4,6 +4,9 @@ Subscribe to [the **xrpl-announce** mailing list](https://groups.google.com/g/xr
## Unreleased
### Fixed
* Fix `AMM` ledger object's `LPTokenBalance` type to `IssuedCurrencyAmount`.
## 2.14.0 (2023-11-30)
### Added

View File

@@ -60,7 +60,7 @@ export default interface AMM extends BaseLedgerEntry, MissingPreviousTxnID {
* The holders of these tokens can vote on the AMM's trading fee in proportion to their holdings,
* or redeem the tokens for a share of the AMM's assets which grows with the trading fees collected.
*/
LPTokenBalance: Currency
LPTokenBalance: IssuedCurrencyAmount
/**
* The percentage fee to be charged for trades against this AMM instance, in units of 1/100,000.
* The maximum value is 1000, for a 1% fee.