index.js 1.2 KB

12345678910111213141516171819202122232425
  1. /**
  2. * When interacting with Ethereum, it is necessary to use a private
  3. * key authenticate actions by signing a payload.
  4. *
  5. * Wallets are the simplest way to expose the concept of an
  6. * //Externally Owner Account// (EOA) as it wraps a private key
  7. * and supports high-level methods to sign common types of interaction
  8. * and send transactions.
  9. *
  10. * The class most developers will want to use is [[Wallet]], which
  11. * can load a private key directly or from any common wallet format.
  12. *
  13. * The [[HDNodeWallet]] can be used when it is necessary to access
  14. * low-level details of how an HD wallets are derived, exported
  15. * or imported.
  16. *
  17. * @_section: api/wallet:Wallets [about-wallets]
  18. */
  19. export { BaseWallet } from "./base-wallet.js";
  20. export { defaultPath, getAccountPath, getIndexedAccountPath, HDNodeWallet, HDNodeVoidWallet, } from "./hdwallet.js";
  21. export { isCrowdsaleJson, decryptCrowdsaleJson } from "./json-crowdsale.js";
  22. export { isKeystoreJson, decryptKeystoreJsonSync, decryptKeystoreJson, encryptKeystoreJson, encryptKeystoreJsonSync } from "./json-keystore.js";
  23. export { Mnemonic } from "./mnemonic.js";
  24. export { Wallet } from "./wallet.js";
  25. //# sourceMappingURL=index.js.map