You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

flags.js 557B

1234567891011121314151617181920
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.trustlineFlags = exports.orderFlags = void 0;
  4. const orderFlags = {
  5. Passive: 0x00010000,
  6. Sell: 0x00020000
  7. };
  8. exports.orderFlags = orderFlags;
  9. const trustlineFlags = {
  10. LowReserve: 0x00010000,
  11. HighReserve: 0x00020000,
  12. LowAuth: 0x00040000,
  13. HighAuth: 0x00080000,
  14. LowNoRipple: 0x00100000,
  15. HighNoRipple: 0x00200000,
  16. LowFreeze: 0x00400000,
  17. HighFreeze: 0x00800000
  18. };
  19. exports.trustlineFlags = trustlineFlags;
  20. //# sourceMappingURL=flags.js.map