feat: add jup list fetch

This commit is contained in:
Arihant Bansal
2024-12-13 16:06:52 +05:30
parent d0433e88fa
commit fe53b0cbd9
2 changed files with 58 additions and 1 deletions

View File

@@ -39,7 +39,6 @@ export interface PumpfunLaunchResponse {
error?: string;
}
/**
* Lulo Account Details response format
*/
@@ -54,3 +53,19 @@ export interface LuloAccountDetailsResponse {
minimumRate: string;
};
}
export interface JupiterTokenData {
address: string;
name: string;
symbol: string;
decimals: number;
tags: string[];
logoURI: string;
daily_volume: number;
freeze_authority: string | null;
mint_authority: string | null;
permanent_delegate: string | null;
extensions: {
coingeckoId?: string;
};
}