fix: pseudo-transactions for ledger and tx (#2515)

* Add pseudo transactions as types returned by `tx` and `ledger`
* Make` LedgerEntryResponse` generic to allow custom ledger entries
* Update UNLModify to extend BaseTransaction
* Create type `PseudoTransaction`

Co-authored-by: Caleb Kniffen <ckniffen@ripple.com>
This commit is contained in:
pdp2121
2023-10-13 16:58:10 -04:00
committed by GitHub
parent edf1155cdd
commit 8b03c995b0
9 changed files with 38 additions and 10 deletions

View File

@@ -6,6 +6,10 @@ Subscribe to [the **xrpl-announce** mailing list](https://groups.google.com/g/xr
### Fixed
- Allow flag maps when submitting `NFTokenMint` and `NFTokenCreateOffer` transactions like others with flags
- Add pseudo transaction types to `tx` and `ledger` methods responses.
### Updated
- Make `LedgerEntryResponse` a generic so it can be used like `LedgerEntryResponse<Escrow>`
## 2.12.0 (2023-09-27)
### Added