mirror of
https://github.com/Xahau/xahau.js.git
synced 2025-11-04 13:05:49 +00:00
feat: add missing AccountRoot fields (#2347)
Add `BurnedNFTokens`, `FirstNFTSequence`, `MintedNFTokens`, `NFTokenMinter`, and `WalletLocator` to `AccountRoot`.
This commit is contained in:
@@ -3,6 +3,10 @@
|
||||
Subscribe to [the **xrpl-announce** mailing list](https://groups.google.com/g/xrpl-announce) for release announcements. We recommend that xrpl.js (ripple-lib) users stay up-to-date with the latest stable release.
|
||||
## Unreleased
|
||||
|
||||
### Added
|
||||
* Add `BurnedNFTokens`, `FirstNFTSequence`, `MintedNFTokens`,
|
||||
`NFTokenMinter`, and `WalletLocator` to `AccountRoot`.
|
||||
|
||||
## 2.8.0 (2023-06-13)
|
||||
|
||||
### Added
|
||||
|
||||
@@ -72,6 +72,16 @@ export default interface AccountRoot extends BaseLedgerEntry {
|
||||
* account to each other.
|
||||
*/
|
||||
TransferRate?: number
|
||||
/** An arbitrary 256-bit value that users can set. */
|
||||
WalletLocator?: string
|
||||
/** Total NFTokens this account's issued that have been burned. This number is always equal or less than MintedNFTokens. */
|
||||
BurnedNFTokens?: number
|
||||
/** The sequence that the account first minted an NFToken */
|
||||
FirstNFTSequence: number
|
||||
/** Total NFTokens have been minted by and on behalf of this account. */
|
||||
MintedNFTokens?: number
|
||||
/** Another account that can mint NFTokens on behalf of this account. */
|
||||
NFTokenMinter?: string
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user