ethers.js/lib.esm/address/index.js

19 lines
788 B
JavaScript
Raw Normal View History

2022-11-30 23:44:23 +03:00
/**
2022-12-03 05:27:06 +03:00
* Addresses are a fundamental part of interacting with Ethereum. They
* represent the gloabal identity of Externally Owned Accounts (accounts
* backed by a private key) and contracts.
*
* The Ethereum Naming Service (ENS) provides an interconnected ecosystem
* of contracts, standards and libraries which enable looking up an
* address for an ENS name.
*
* These functions help convert between various formats, validate
* addresses and safely resolve ENS names.
2022-11-30 23:44:23 +03:00
*
* @_section: api/address:Addresses [addresses]
*/
2022-12-03 05:27:06 +03:00
null;
2022-09-05 23:57:11 +03:00
export { getAddress, getIcapAddress } from "./address.js";
export { getCreateAddress, getCreate2Address } from "./contract-address.js";
export { isAddressable, isAddress, resolveAddress } from "./checks.js";
//# sourceMappingURL=index.js.map