feat: price

This commit is contained in:
aryan
2024-12-16 02:42:05 +05:30
parent 15572613b0
commit fc0165f5c2
5 changed files with 101 additions and 12 deletions

View File

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