Bisq statistics page.

This commit is contained in:
softsimon
2020-07-14 14:38:52 +07:00
parent 87abfc38cb
commit b7376fbd8d
14 changed files with 221 additions and 11 deletions

View File

@@ -59,6 +59,14 @@ export interface BisqOutput {
opReturn?: string;
}
export interface BisqStats {
minted: number;
burnt: number;
addresses: number;
unspent_txos: number;
spent_txos: number;
}
interface BisqScriptPubKey {
addresses: string[];
asm: string;