Merge branch 'main' into jup-list

This commit is contained in:
aryan
2024-12-19 05:45:01 +05:30
30 changed files with 3384 additions and 89 deletions

View File

@@ -69,3 +69,11 @@ export interface JupiterTokenData {
coingeckoId?: string;
};
}
export interface FetchPriceResponse {
status: "success" | "error";
tokenId?: string;
priceInUSDC?: string;
message?: string;
code?: string;
}