-
Notifications
You must be signed in to change notification settings - Fork 693
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cleanup Unused Deps #3039
base: develop
Are you sure you want to change the base?
Cleanup Unused Deps #3039
Conversation
? process.env.VITE_COOLER_LOANS_API_ENDPOINT | ||
: mode === "development" | ||
? "https://olympus-cooler-loans-api-dev.web.app" // Avoids CORS errors during local development | ||
: "https://olympus-cooler-loans-api-prod.web.app", // Used in production builds |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What is hosting this? Why do we need a separate endpoint to serve Cooler Loans?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is for cooler loan metrics subgraph not for cooler loans. jem set this up.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@0xJem could you comment on this piece.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is hosted on Google Cloud
Repo is here: https://github.com/OlympusDAO/cooler-loans-api
Calculating the timeseries data in the frontend made it very slow, so it's shoved into an API that updates the data every 5 minutes
No description provided.