chaingate
Version:
A complete TypeScript library for connecting to and making transactions on different blockchains
10 lines (9 loc) • 528 B
TypeScript
import { LegacyUtxoWallet } from '../../abstract/LegacyUtxoWallet/LegacyUtxoWallet';
import { Transports } from '../../Transports';
import { DogecoinInfo } from '../../../CurrencyInfo';
import { UtxoCurrencyUtils } from '../../../CurrencyUtils/abstract/UtxoCurrencyUtils/UtxoCurrencyUtils';
export declare class DogecoinWallet extends LegacyUtxoWallet<typeof DogecoinInfo> {
transports: Transports;
constructor(utils: UtxoCurrencyUtils<typeof DogecoinInfo>, transports: Transports);
getAddress(): Promise<string>;
}