index.js 794 B

12345678910111213141516171819
  1. /**
  2. * Addresses are a fundamental part of interacting with Ethereum. They
  3. * represent the gloabal identity of Externally Owned Accounts (accounts
  4. * backed by a private key) and contracts.
  5. *
  6. * The Ethereum Naming Service (ENS) provides an interconnected ecosystem
  7. * of contracts, standards and libraries which enable looking up an
  8. * address for an ENS name.
  9. *
  10. * These functions help convert between various formats, validate
  11. * addresses and safely resolve ENS names.
  12. *
  13. * @_section: api/address:Addresses [about-addresses]
  14. */
  15. null;
  16. export { getAddress, getIcapAddress } from "./address.js";
  17. export { getCreateAddress, getCreate2Address } from "./contract-address.js";
  18. export { isAddressable, isAddress, resolveAddress } from "./checks.js";
  19. //# sourceMappingURL=index.js.map