chaingate
Version:
A complete TypeScript library for connecting to and making transactions on different blockchains
5 lines (4 loc) • 331 B
TypeScript
import { SeedWallet } from './Wallet/implementations/SeedWallet/SeedWallet';
import { PhraseWallet } from './Wallet/implementations/PhraseWallet/PhraseWallet';
import { PrivateKeyWallet } from './Wallet/implementations/PrivateKeyWallet/PrivateKeyWallet';
export type ChainGateWallet = PrivateKeyWallet | SeedWallet | PhraseWallet;