import { BigDecimal } from '@sentio/bigdecimal'; export interface BaseCoinInfo { 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; } //# sourceMappingURL=coin.d.ts.map