Call node backend block API instead of electrs

This commit is contained in:
nymkappa
2022-04-27 17:43:32 +09:00
parent 384c8d17cf
commit 6ae44c6f7e
2 changed files with 8 additions and 2 deletions

View File

@@ -154,6 +154,10 @@ export class ApiService {
);
}
getBlock$(hash: string): Observable<BlockExtended> {
return this.httpClient.get<BlockExtended>(this.apiBaseUrl + this.apiBasePath + '/api/v1/block/' + hash);
}
getHistoricalHashrate$(interval: string | undefined): Observable<any> {
return this.httpClient.get<any[]>(
this.apiBaseUrl + this.apiBasePath + `/api/v1/mining/hashrate` +