import { BigDecimal } from '@sentio/bigdecimal' export interface BaseCoinInfo { // token_type: { type: string; account_address: string } type: string symbol: string hippo_symbol?: string decimals: number bridge: string } export interface MoveCoinList { whiteListed(type: string): boolean whitelistCoins(): Map getCoinInfo(type: string, network: Network): Promise calculateValueInUsd(amount: bigint, coinInfo: TokenType, timestamp: number, network: Network): Promise }