chaingate
Version:
A complete TypeScript library for connecting to and making transactions on different blockchains
9 lines (8 loc) • 504 B
TypeScript
import { Client } from '@hey-api/client-fetch';
import { TtlCache } from '../../../InternalUtils/TtlCache';
import { GlobalMarketsResponse } from '../../../Client';
import { BitcoinTestnetInfo } from '../../CurrencyInfo';
import { Bech32UtxoCurrencyUtils } from '../abstract/Bech32UtxoCurrencyUtils/Bech32UtxoCurrencyUtils';
export declare class BitcoinTestnetUtils extends Bech32UtxoCurrencyUtils<typeof BitcoinTestnetInfo> {
constructor(client: Client, markets: TtlCache<GlobalMarketsResponse>);
}