Show accelerator audit total on block page

This commit is contained in:
Mononaut
2024-03-05 00:40:49 +00:00
parent 1d877a746f
commit 7491fb512c
6 changed files with 75 additions and 3 deletions

View File

@@ -400,4 +400,18 @@ export interface AccelerationHistoryParams {
blockHeight?: number;
page?: number;
pageLength?: number;
}
export interface AccelerationInfo {
txid: string,
height: number,
pool: {
id: number,
slug: string,
name: string,
},
effective_vsize: number,
effective_fee: number,
boost_rate: number,
boost_cost: number,
}