mirror of
https://github.com/mempool/mempool.git
synced 2025-01-09 06:59:42 +01:00
42 lines
1.4 KiB
TypeScript
42 lines
1.4 KiB
TypeScript
import { Injectable } from '@angular/core';
|
|
import { HttpClient, HttpResponse } from '@angular/common/http';
|
|
import { Observable } from 'rxjs';
|
|
import { BisqTransaction, BisqBlock, BisqStats } from './bisq.interfaces';
|
|
|
|
const API_BASE_URL = '/api/v1';
|
|
|
|
@Injectable({
|
|
providedIn: 'root'
|
|
})
|
|
export class BisqApiService {
|
|
apiBaseUrl: string;
|
|
|
|
constructor(
|
|
private httpClient: HttpClient,
|
|
) { }
|
|
|
|
getStats$(): Observable<BisqStats> {
|
|
return this.httpClient.get<BisqStats>(API_BASE_URL + '/bisq/stats');
|
|
}
|
|
|
|
getTransaction$(txId: string): Observable<BisqTransaction> {
|
|
return this.httpClient.get<BisqTransaction>(API_BASE_URL + '/bisq/tx/' + txId);
|
|
}
|
|
|
|
listTransactions$(start: number, length: number): Observable<HttpResponse<BisqTransaction[]>> {
|
|
return this.httpClient.get<BisqTransaction[]>(API_BASE_URL + `/bisq/txs/${start}/${length}`, { observe: 'response' });
|
|
}
|
|
|
|
getBlock$(hash: string): Observable<BisqBlock> {
|
|
return this.httpClient.get<BisqBlock>(API_BASE_URL + '/bisq/block/' + hash);
|
|
}
|
|
|
|
listBlocks$(start: number, length: number): Observable<HttpResponse<BisqBlock[]>> {
|
|
return this.httpClient.get<BisqBlock[]>(API_BASE_URL + `/bisq/blocks/${start}/${length}`, { observe: 'response' });
|
|
}
|
|
|
|
getAddress$(address: string): Observable<BisqTransaction[]> {
|
|
return this.httpClient.get<BisqTransaction[]>(API_BASE_URL + '/bisq/address/' + address);
|
|
}
|
|
}
|