From 9825e729b5d5c3114a59bef09dfff3d2670c0f06 Mon Sep 17 00:00:00 2001 From: zgrguric Date: Wed, 13 Dec 2023 15:41:10 +0100 Subject: [PATCH] add NFTokenMint_tfBurnable --- src/Utilities/Flags.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/Utilities/Flags.php b/src/Utilities/Flags.php index 89c1128..43a0f0a 100644 --- a/src/Utilities/Flags.php +++ b/src/Utilities/Flags.php @@ -28,6 +28,9 @@ final class Flags 'tfTrustLine' => 0x00000004, 'tfTransferable' => 0x00000008 ], + 'URITokenMint' => [ + 'tfBurnable' => 0x00000001, + ], 'OfferCreate' => [ 'tfPassive' => 0x00010000, 'tfImmediateOrCancel' => 0x00020000, @@ -125,6 +128,9 @@ public static function description(string $transactiontype, string $flagname, bo case 'NFTokenMint_tfBurnable': $html = 'If set, indicates that the minted token may be burned by the issuer even if the issuer does not currently hold the token. The current holder of the token may always burn it.'; break; + case 'URITokenMint_tfBurnable': + $html = 'If set, indicates that the minted token may be burned by the issuer (or an entity authorized by the issuer) even if the issuer does not currently hold the token. The current holder of the token may always burn it.'; + break; case 'NFTokenMint_tfOnlyXRP': $html = 'If set, indicates that the token may only be offered or sold for XRP.'; break;