feat: add Clawback amendment support (#2353)

* Add Clawback transaction
* Account flag lsfAllowTrustLineClawback
* Support bitwise flag checking of 64 bit flags
This commit is contained in:
Shawn Xie
2023-07-19 15:39:48 -04:00
committed by GitHub
parent c564161871
commit 63ea6e8c9b
14 changed files with 284 additions and 7 deletions

View File

@@ -56,6 +56,8 @@ export enum AccountSetAsfFlags {
asfDisallowIncomingPayChan = 14,
/** Disallow other accounts from creating incoming Trustlines */
asfDisallowIncomingTrustline = 15,
/** Permanently gain the ability to claw back issued IOUs */
asfAllowTrustLineClawback = 16,
}
/**