Add balance graph to address page

This commit is contained in:
Mononaut
2024-03-18 08:19:56 +00:00
parent 48d852fd49
commit 82f1fa5110
12 changed files with 335 additions and 26 deletions

View File

@@ -149,6 +149,13 @@ export interface AddressOrScriptHash {
mempool_stats: MempoolStats;
}
export interface AddressTxSummary {
txid: string;
value: number;
height: number;
time: number;
}
export interface ChainStats {
funded_txo_count: number;
funded_txo_sum: number;