index.ts 364 B

12345678910111213141516
  1. /**
  2. * Some common constants useful for Ethereum.
  3. *
  4. * @_section: api/constants: Constants [about-constants]
  5. */
  6. export { ZeroAddress } from "./addresses.js";
  7. export { ZeroHash } from "./hashes.js";
  8. export {
  9. N,
  10. WeiPerEther,
  11. MaxUint256,
  12. MinInt256,
  13. MaxInt256
  14. } from "./numbers.js";
  15. export { EtherSymbol, MessagePrefix } from "./strings.js";