address wallet page by name

This commit is contained in:
Mononaut
2024-09-29 09:11:40 +00:00
parent a7ba4a0be8
commit 9c303e8c23
7 changed files with 319 additions and 400 deletions

View File

@@ -1,4 +1,4 @@
import { AddressTxSummary, Block, Transaction } from "./electrs.interface";
import { AddressTxSummary, Block, ChainStats, Transaction } from "./electrs.interface";
export interface OptimizedMempoolStats {
added: number;
@@ -474,5 +474,6 @@ export interface TxResult {
export interface WalletAddress {
address: string;
active: boolean;
transactions?: AddressTxSummary[];
stats: ChainStats;
transactions: AddressTxSummary[];
}