UNPKG

chaingate

Version:

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

8 lines (7 loc) 489 B
import { Bech32UtxoWallet } from '../../abstract/Bech32UtxoWallet/Bech32UtxoWallet'; import { Transports } from '../../Transports'; import { BitcoinTestnetInfo } from '../../../CurrencyInfo'; import { UtxoCurrencyUtils } from '../../../CurrencyUtils/abstract/UtxoCurrencyUtils/UtxoCurrencyUtils'; export declare class BitcoinTestnetWallet extends Bech32UtxoWallet<typeof BitcoinTestnetInfo> { constructor(utils: UtxoCurrencyUtils<typeof BitcoinTestnetInfo>, transports: Transports); }