UNPKG

chaingate

Version:

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

9 lines (8 loc) 435 B
import { BitcoinCashApi, ChainGateClient } from 'chaingate-client'; import { LegacyUtxo } from '../../abstract/LegacyUtxo/LegacyUtxo'; import { CurrencyProviders } from '../../CurrencyProviders'; export declare class Dogecoin extends LegacyUtxo<'doge'> { currencyProviders: CurrencyProviders; constructor(client: ChainGateClient, api: BitcoinCashApi, currencyProviders: CurrencyProviders); getAddress(): Promise<string>; }