Add block fee rate percentiles chart

This commit is contained in:
nymkappa
2022-04-15 00:21:38 +09:00
parent 0ba34594a2
commit e7f2c9efd2
17 changed files with 505 additions and 55 deletions

View File

@@ -182,6 +182,13 @@ export class ApiService {
);
}
getHistoricalBlockFeeRates$(interval: string | undefined) : Observable<any> {
return this.httpClient.get<any[]>(
this.apiBaseUrl + this.apiBasePath + `/api/v1/mining/blocks/fee-rates` +
(interval !== undefined ? `/${interval}` : '')
);
}
getRewardStats$(blockCount: number = 144): Observable<RewardStats> {
return this.httpClient.get<RewardStats>(this.apiBaseUrl + this.apiBasePath + `/api/v1/mining/reward-stats/${blockCount}`);
}