From ebdc068767af2a1cee18bf6bb9f6fb29ff881d93 Mon Sep 17 00:00:00 2001 From: Jackson Mills Date: Wed, 6 Apr 2022 09:43:52 -0700 Subject: [PATCH] Add missing `Owner` field to NFTokenBurn page (#1385) When burning a token which has `lsfBurnable` enabled as the original minter, the `Owner` field is required to specify which NFTokenPages to search for the NFTokenID. Here's the original issue which prompted this discovery: https://github.com/XRPLF/xrpl.js/issues/1947 --- .../transactions/transaction-types/nftokenburn.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/content/references/protocol-reference/transactions/transaction-types/nftokenburn.md b/content/references/protocol-reference/transactions/transaction-types/nftokenburn.md index 150b0d909c..ac77f2c69b 100644 --- a/content/references/protocol-reference/transactions/transaction-types/nftokenburn.md +++ b/content/references/protocol-reference/transactions/transaction-types/nftokenburn.md @@ -77,6 +77,18 @@ If this operation succeeds, the corresponding `NFToken` is removed. If this oper Identifies the NFToken object to be removed by the transaction. + + Owner + + No + + string + + AccountID + + Identifies the owner of the NFToken with the given TokenID. Only used if that owner is different than the account signing this transaction. This is used to burn tokens with the lsfBurnable flag that have been traded. + +