UNPKG

chaingate

Version:

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

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