-
Notifications
You must be signed in to change notification settings - Fork 3
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
[FEAT] - Creates env vars to handle our subgraph API endpoints #200
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
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.
Looking good, just small improvements
Deploying stackly-ui with Cloudflare Pages
|
const STACKLY_SUBGRAPH_API_KEY = | ||
process.env.STACKLY_SUBGRAPH_API_KEY ?? "e7b7ff845e506590498946cd6bf83bf6"; | ||
const API_BASE_URL = "https://gateway-arbitrum.network.thegraph.com/api"; | ||
const SUBGRAPH_API_KEY = process.env.STACKLY_SUBGRAPH_API_KEY ?? ""; |
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.
if don't set the SUBGRAPH_API_KEY
key wouldn't be better to break?
Context
With this change we will be able to update our subgraph API endpoint URLs for the three supported chains, this way we will be able not to consume API credits for our development.
Description