strings.js 553 B

1234567891011121314151617
  1. "use strict";
  2. // NFKC (composed) // (decomposed)
  3. Object.defineProperty(exports, "__esModule", { value: true });
  4. exports.MessagePrefix = exports.EtherSymbol = void 0;
  5. /**
  6. * A constant for the ether symbol (normalized using NFKC).
  7. *
  8. * (**i.e.** ``"\\u039e"``)
  9. */
  10. exports.EtherSymbol = "\u039e"; // "\uD835\uDF63";
  11. /**
  12. * A constant for the [[link-eip-191]] personal message prefix.
  13. *
  14. * (**i.e.** ``"\\x19Ethereum Signed Message:\\n"``)
  15. */
  16. exports.MessagePrefix = "\x19Ethereum Signed Message:\n";
  17. //# sourceMappingURL=strings.js.map