Add LN node per country graph

This commit is contained in:
nymkappa
2022-07-17 11:10:17 +02:00
parent 75f1b52a2a
commit 63ebace378
10 changed files with 423 additions and 6 deletions

View File

@@ -262,4 +262,8 @@ export class ApiService {
getNodeForISP$(isp: string): Observable<any> {
return this.httpClient.get<any[]>(this.apiBaseUrl + this.apiBasePath + '/api/v1/lightning/nodes/isp/' + isp);
}
getNodesPerCountry(): Observable<any> {
return this.httpClient.get<any[]>(this.apiBaseUrl + this.apiBasePath + '/api/v1/lightning/nodes/countries');
}
}