How to use the ethereumjs-wallet.ThirdParty function in ethereumjs-wallet

To help you get started, we’ve selected a few ethereumjs-wallet examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github MyEtherWallet / MyEtherWallet / src / helpers / index.js View on Github external
import Wallet from 'ethereumjs-wallet';
import ThirdPartyWallets from 'ethereumjs-wallet/thirdparty';
import parseTokensHex from './parseTokensHex';
import Configs from './configs';
import Blockies from './blockies';
import Misc from './misc';
import CreateJsonWallet from './createJsonWallet';
import Toast from './responseHandler';
import ExtensionHelpers from './ExtensionHelpers';

Wallet.ThirdParty = ThirdPartyWallets;
export {
  Wallet,
  Configs,
  parseTokensHex,
  Blockies,
  Misc,
  CreateJsonWallet,
  Toast,
  ExtensionHelpers
};