UNPKG

chaingate

Version:

A complete TypeScript library for connecting to and making transactions on different blockchains

10 lines (9 loc) 604 B
import { Wallet } from './Wallet/Wallet'; import { HDWallet } from './Wallet/abstract/HDWallet/HDWallet'; import { PhraseWallet } from './Wallet/implementations/PhraseWallet/PhraseWallet'; import { SeedWallet } from './Wallet/implementations/SeedWallet/SeedWallet'; import { PrivateKeyWallet } from './Wallet/implementations/PrivateKeyWallet/PrivateKeyWallet'; export { Wallet, HDWallet, PhraseWallet, SeedWallet, PrivateKeyWallet }; export * as initializeWallet from './InitializeWallet'; export * as castWallet from './CastWallet'; export { ChainGateClient as BlockchainData } from 'chaingate-client';