mempool/backend/src/api/bitcoin/electrum-api.interface.ts

13 lines
228 B
TypeScript
Raw Normal View History

export namespace IElectrumApi {
export interface ScriptHashBalance {
confirmed: number;
unconfirmed: number;
}
export interface ScriptHashHistory {
height: number;
tx_hash: string;
fee?: number;
}
}