custom dashboard wallet widgets

This commit is contained in:
Mononaut
2024-07-25 22:34:52 +00:00
parent 862c9591a1
commit e095192968
18 changed files with 149 additions and 24 deletions

View File

@@ -1,4 +1,4 @@
import { Block, Transaction } from "./electrs.interface";
import { AddressTxSummary, Block, Transaction } from "./electrs.interface";
export interface OptimizedMempoolStats {
added: number;
@@ -471,3 +471,8 @@ export interface TxResult {
};
error?: string;
}
export interface WalletAddress {
address: string;
active: boolean;
transactions?: AddressTxSummary[];
}