Basic Liquid Asset support.

This commit is contained in:
softsimon
2020-04-28 17:10:31 +07:00
parent 7e7b536acb
commit b2d2fd225c
11 changed files with 466 additions and 2 deletions

View File

@@ -157,6 +157,14 @@ export class WebsocketService {
this.websocketSubject.next({ 'track-address': 'stop' });
}
startTrackAsset(asset: string) {
this.websocketSubject.next({ 'track-asset': asset });
}
stopTrackingAsset() {
this.websocketSubject.next({ 'track-asset': 'stop' });
}
fetchStatistics(historicalDate: string) {
this.websocketSubject.next({ historicalDate });
}