Skip to content

Commit 405da1e

Browse files
committed
Add DeepFreeze Flags
1 parent 48ef94b commit 405da1e

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

src/Utilities/Flags.php

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,9 @@ final class Flags
5252
'tfSetNoRipple' => 0x00020000,
5353
'tfClearNoRipple' => 0x00040000,
5454
'tfSetFreeze' => 0x00100000,
55-
'tfClearFreeze' => 0x00200000
55+
'tfClearFreeze' => 0x00200000,
56+
'tfSetDeepFreeze' => 0x00400000,
57+
'tfClearDeepFreeze' => 0x00800000
5658
],
5759
'AccountSet' => [
5860
'tfRequireDestTag' => 0x00010000,
@@ -224,6 +226,12 @@ public static function description(string $transactiontype, string $flagname, bo
224226
case 'TrustSet_tfClearFreeze':
225227
$html = 'Disable individual <a href="https://xrpl.org/freezes.html">Freeze</a> on the specific trust line.';
226228
break;
229+
case 'TrustSet_tfSetDeepFreeze':
230+
$html = 'Deep freeze the trust line.';
231+
break;
232+
case 'TrustSet_tfClearDeepFreeze':
233+
$html = 'Clear a deep-freeze on the trust line.';
234+
break;
227235
case 'AccountSet_tfRequireDestTag':
228236
case 'AccountSet_asfRequireDest':
229237
$html = 'Require a destination tag to send transactions to this account.';

0 commit comments

Comments
 (0)