mirror of
https://github.com/Xahau/xahau.js.git
synced 2025-12-06 17:27:59 +00:00
Add Owner to NFTokenBurn transaction (#1956)
This commit is contained in:
@@ -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.
|
* Deprecated BroadcastClient as it does not solve the reliabile connection problem.
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
* Added missing `Owner` field to NFTokenBurn type definition
|
||||||
* Add missing filter types in AccountObjectType
|
* Add missing filter types in AccountObjectType
|
||||||
|
|
||||||
## 2.2.1 (2022-04-21)
|
## 2.2.1 (2022-04-21)
|
||||||
|
|||||||
@@ -25,6 +25,12 @@ export interface NFTokenBurn extends BaseTransaction {
|
|||||||
* Identifies the NFToken object to be removed by the transaction.
|
* Identifies the NFToken object to be removed by the transaction.
|
||||||
*/
|
*/
|
||||||
NFTokenID: string
|
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
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Reference in New Issue
Block a user