@kamino-finance/kamino-db
Version:
Kamino database models
17 lines (15 loc) • 347 B
text/typescript
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;