UNPKG

@kamino-finance/kamino-db

Version:
17 lines (15 loc) 347 B
export interface KswapTokenEntity { id: string; mint: string; logo_url: string | null; name: string | null; symbol: string | null; decimals: number | null; market_cap_usd: string | null; volume_usd: string | null; verified: boolean; priority: number; created_on: Date; updated_on: Date; } export default KswapTokenEntity;