diff --git a/packages/xrpl/HISTORY.md b/packages/xrpl/HISTORY.md index e242edaa..369126c1 100644 --- a/packages/xrpl/HISTORY.md +++ b/packages/xrpl/HISTORY.md @@ -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) diff --git a/packages/xrpl/src/models/transactions/NFTokenBurn.ts b/packages/xrpl/src/models/transactions/NFTokenBurn.ts index 2aca980f..572c7c4b 100644 --- a/packages/xrpl/src/models/transactions/NFTokenBurn.ts +++ b/packages/xrpl/src/models/transactions/NFTokenBurn.ts @@ -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 } /**