strings.js 432 B

1234567891011121314
  1. // NFKC (composed) // (decomposed)
  2. /**
  3. * A constant for the ether symbol (normalized using NFKC).
  4. *
  5. * (**i.e.** ``"\\u039e"``)
  6. */
  7. export const EtherSymbol = "\u039e"; // "\uD835\uDF63";
  8. /**
  9. * A constant for the [[link-eip-191]] personal message prefix.
  10. *
  11. * (**i.e.** ``"\\x19Ethereum Signed Message:\\n"``)
  12. */
  13. export const MessagePrefix = "\x19Ethereum Signed Message:\n";
  14. //# sourceMappingURL=strings.js.map