swtc-chains
Version:
swtc chain information
30 lines • 726 B
JavaScript
export const LEDGER_FLAGS = {
account_root: {
PasswordSpent: 0x00010000,
RequireDestTag: 0x00020000,
RequireAuth: 0x00040000,
DisallowSWT: 0x00080000,
DisableMaster: 0x00100000
},
offer: {
Passive: 0x00010000,
Sell: 0x00020000
},
state: {
LowReserve: 0x00010000,
HighReserve: 0x00020000,
LowAuth: 0x00040000,
HighAuth: 0x00080000,
LowNoSkywell: 0x00100000,
HighNoSkywell: 0x00200000
}
};
export const FLAGS = {
OfferCreate: {
Passive: 0x00010000,
ImmediateOrCancel: 0x00020000,
FillOrKill: 0x00040000,
Sell: 0x00080000
}
};
//# sourceMappingURL=ledger.js.map