import { ChainId } from './constants'; export interface Token { readonly chainId: ChainId; readonly address: string; readonly name: string; readonly decimals: number; readonly symbol: string; readonly logoURI?: string; readonly render?: 'swap' | 'liquidity' | 'both' | 'hide'; readonly curepayLink?: string; readonly vetted?: 'approved' | 'certified'; readonly shortDescription?: string; readonly website?: string; readonly hasTransactonFees?: boolean; readonly hasTransactionFees?: boolean; readonly scanLink?: string; readonly lockedLiquidityLink?: string; readonly socialLinks?: { readonly discord?: string; readonly telegram?: string; readonly twitter?: string; readonly youtube?: string; }; } //# sourceMappingURL=token.d.ts.map