Add utxo chart to address page

This commit is contained in:
Mononaut
2024-09-13 17:49:29 +00:00
parent c4b90c2a18
commit a1968e01e5
10 changed files with 483 additions and 8 deletions

View File

@@ -233,3 +233,10 @@ interface AssetStats {
peg_out_amount: number;
burn_count: number;
}
export interface Utxo {
txid: string;
vout: number;
value: number;
status: Status;
}