Create world map of clearnet LN nodes and channels

This commit is contained in:
nymkappa
2022-07-21 22:43:12 +02:00
parent c7909a1ca8
commit c839abb479
12 changed files with 329 additions and 2 deletions

View File

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