UNPKG

@koyofinance/swap-sdk

Version:
22 lines 580 B
import type { ChainId } from '@koyofinance/core-sdk'; import { REFERENCE_ASSETS } from '../referenceAssets'; import { RawCoin } from './coins'; export * from './coins'; export declare class Coin { id: string; name: string; symbol: string; decimals: 18 | 6; coingeckoId: string; chainId: ChainId; type: REFERENCE_ASSETS; address: string; readonly rawCoin: RawCoin; constructor(coin: RawCoin); isFiat(): boolean; toJSON(): RawCoin; } export declare const augmentedCoins: { [k: string]: Coin; }; //# sourceMappingURL=index.d.ts.map