import { IMempoolInfo, ITransaction, IBlock } from '../../interfaces'; export interface AbstractBitcoinApi { getMempoolInfo(): Promise; getRawMempool(): Promise; getRawTransaction(txId: string): Promise; getBlockCount(): Promise; getBlock(hash: string): Promise; getBlockHash(height: number): Promise; }