mirror of
https://github.com/Xahau/xahau.js.git
synced 2026-08-22 16:10:52 +00:00
Add all available flags to Remote.flags.
This commit is contained in:
@@ -203,11 +203,29 @@ util.inherits(Remote, EventEmitter);
|
||||
|
||||
// Flags for ledger entries. In support of account_root().
|
||||
Remote.flags = {
|
||||
// Account Root
|
||||
account_root : {
|
||||
PasswordSpent: 0x00010000,
|
||||
RequireDestTag: 0x00020000,
|
||||
RequireAuth: 0x00040000,
|
||||
DisallowXRP: 0x00080000
|
||||
PasswordSpent: 0x00010000, // True, if password set fee is spent.
|
||||
RequireDestTag: 0x00020000, // True, to require a DestinationTag for payments.
|
||||
RequireAuth: 0x00040000, // True, to require a authorization to hold IOUs.
|
||||
DisallowXRP: 0x00080000, // True, to disallow sending XRP.
|
||||
DisableMaster: 0x00100000 // True, force regular key.
|
||||
},
|
||||
|
||||
// Offer
|
||||
offer: {
|
||||
Passive: 0x00010000,
|
||||
Sell: 0x00020000 // True, offer was placed as a sell.
|
||||
},
|
||||
|
||||
// Ripple State
|
||||
state: {
|
||||
LowReserve: 0x00010000, // True, if entry counts toward reserve.
|
||||
HighReserve: 0x00020000,
|
||||
LowAuth: 0x00040000,
|
||||
HighAuth: 0x00080000,
|
||||
LowNoRipple: 0x00100000,
|
||||
HighNoRipple: 0x00200000
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user