Electrs server status page

This commit is contained in:
Mononaut
2024-03-03 20:31:02 +00:00
parent f63f1b1773
commit 5898143f66
8 changed files with 181 additions and 2 deletions

View File

@@ -1,3 +1,4 @@
import { SafeResourceUrl } from '@angular/platform-browser';
import { ILoadingIndicators } from '../services/state.service';
import { Transaction } from './electrs.interface';
import { BlockExtended, DifficultyAdjustment, RbfTree } from './node-api.interface';
@@ -120,4 +121,17 @@ export interface Recommendedfees {
hourFee: number;
minimumFee: number;
economyFee: number;
}
export interface HealthCheckHost {
host: string;
active: boolean;
rtt: number;
latestHeight: number;
socket: boolean;
outOfSync: boolean;
unreachable: boolean;
checked: boolean;
link?: string;
statusPage?: SafeResourceUrl;
}