wallet tracking backend support

This commit is contained in:
Mononaut
2024-07-25 22:33:32 +00:00
parent ca7221f8b7
commit 862c9591a1
9 changed files with 213 additions and 0 deletions

View File

@@ -179,4 +179,11 @@ export namespace IEsploraApi {
burn_count: number;
}
export interface AddressTxSummary {
txid: string;
value: number;
height: number;
time: number;
tx_position?: number;
}
}