fix: improve .env.template with descriptive comments and Base Sepolia RPC example#2649
Open
schoolkamsergj wants to merge 1 commit into
Open
Conversation
|
@schoolkamsergj is attempting to deploy a commit to the Coinbase Team on Vercel. A member of the Team first needs to authorize it. |
🟡 Heimdall Review Status
|
This was referenced May 19, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Improves
packages/playground/.env.templateto reduce setup friction for developers, as requested in #2644.Changes
Descriptive comments for every variable
Each env var now explains:
New
NEXT_PUBLIC_BASE_SEPOLIA_RPC_URLentryAdds the missing Base Sepolia RPC variable for local development and testing, with a note about the public fallback endpoint (
https://sepolia.base.org) for developers who don't yet have a dedicated RPC key.Source links verified from the codebase
NEXT_PUBLIC_OCK_API_KEY→ used inAppProvider.tsxasOnchainKitProvider apiKeyNEXT_PUBLIC_PROJECT_ID→ used inAppProvider.tsxasOnchainKitProvider projectIdNEXT_PUBLIC_ETHEREUM_MAINNET_RPC_URL→ used inAppProvider.tsxto create a viem public client for mainnetNEXT_PUBLIC_VERCEL_ENV→ set automatically by Vercel on deployNEXT_PUBLIC_RESERVOIR_API_KEY→ used for NFT data featuresBefore / After
Before:
After: each variable has a section header, explanation, required/optional label, and direct links to where to get the value.
Fixes #2644