Skip to content

Commit

Permalink
add NFTokenMint_tfBurnable
Browse files Browse the repository at this point in the history
  • Loading branch information
zgrguric committed Dec 13, 2023
1 parent e9996cb commit 9825e72
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/Utilities/Flags.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ final class Flags
'tfTrustLine' => 0x00000004,
'tfTransferable' => 0x00000008
],
'URITokenMint' => [
'tfBurnable' => 0x00000001,
],
'OfferCreate' => [
'tfPassive' => 0x00010000,
'tfImmediateOrCancel' => 0x00020000,
Expand Down Expand Up @@ -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;
Expand Down

0 comments on commit 9825e72

Please sign in to comment.