import { EventEmitter, Injectable } from '@angular/core'; import { environment } from '@src/environments/environment'; import { BehaviorSubject, Observable } from 'rxjs'; import { CICRegistry } from 'cic-client'; import { TokenRegistry } from '@app/_eth'; import { HttpClient } from '@angular/common/http'; import { RegistryService } from '@app/_services/registry.service'; @Injectable({ providedIn: 'root', }) export class TokenService { registry: CICRegistry; tokenRegistry: TokenRegistry; LoadEvent: EventEmitter = new EventEmitter(); constructor(private httpClient: HttpClient, private registryService: RegistryService) { this.registry = registryService.getRegistry(); this.registry.load(); this.registry.onload = async (address: string): Promise => { this.tokenRegistry = new TokenRegistry( await this.registry.getContractAddressByName('TokenRegistry') ); this.LoadEvent.next(Date.now()); }; } async getTokens(): Promise>> { const count: number = await this.tokenRegistry.totalTokens(); return Array.from({ length: count }, async (v, i) => await this.tokenRegistry.entry(i)); } getTokenBySymbol(symbol: string): Observable { return this.httpClient.get(`${environment.cicCacheUrl}/tokens/${symbol}`); } async getTokenBalance(address: string): Promise { const sarafuToken = await this.registry.addToken(await this.tokenRegistry.entry(0)); return await sarafuToken.methods.balanceOf(address).call(); } }