Add Owner to NFTokenBurn transaction (#1956)

This commit is contained in:
Jackson Mills
2022-05-02 10:15:52 -07:00
committed by GitHub
parent 0a3ad3140c
commit a8b3de707d
2 changed files with 7 additions and 0 deletions

View File

@@ -8,6 +8,7 @@ Subscribe to [the **xrpl-announce** mailing list](https://groups.google.com/g/xr
* Deprecated BroadcastClient as it does not solve the reliabile connection problem.
### Fixed
* Added missing `Owner` field to NFTokenBurn type definition
* Add missing filter types in AccountObjectType
## 2.2.1 (2022-04-21)

View File

@@ -25,6 +25,12 @@ export interface NFTokenBurn extends BaseTransaction {
* Identifies the NFToken object to be removed by the transaction.
*/
NFTokenID: string
/**
* Indicates which account currently owns the token if it is different than
* Account. Only used to burn tokens which have the lsfBurnable flag enabled
* and are not owned by the signing account.
*/
Owner?: string
}
/**