Add coinbase_addresses to extended blocks & table

This commit is contained in:
Mononaut
2024-06-24 06:15:01 +00:00
parent 868dac91c7
commit f9d03b1bb4
8 changed files with 112 additions and 3 deletions

View File

@@ -28,6 +28,7 @@ export interface AbstractBitcoinApi {
$getBatchedOutspends(txId: string[]): Promise<IEsploraApi.Outspend[][]>;
$getBatchedOutspendsInternal(txId: string[]): Promise<IEsploraApi.Outspend[][]>;
$getOutSpendsByOutpoint(outpoints: { txid: string, vout: number }[]): Promise<IEsploraApi.Outspend[]>;
$getCoinbaseTx(blockhash: string): Promise<IEsploraApi.Transaction>;
startHealthChecks(): void;
getHealthStatus(): HealthCheckHost[];