-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Externalizing required frontend config to a dot env file (#56)
* Externalizing required config to a dot env file * Adding a dummy default value for walletconnect projectId
- Loading branch information
1 parent
5a9de28
commit e8dec4e
Showing
5 changed files
with
72 additions
and
4 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Web3Wallet requirement. See https://cloud.walletconnect.com/sign-in | ||
NEXT_PUBLIC_WALLETCONNECT_PROJECT_ID=WC_PROJECT_ID | ||
|
||
# Valid values are INFURA and ALCHEMY. | ||
# If left empty, the app will use the default public provider (see wagmi). | ||
NEXT_PUBLIC_PROVIDER_NAME= | ||
NEXT_PUBLIC_PROVIDER_API_KEY= | ||
|
||
# The chain ID of the network you want to connect to according wagmi. | ||
NEXT_PUBLIC_CHAIN_ID= | ||
|
||
# DApp node endpoints for GraphQL and Inspect services. | ||
NEXT_PUBLIC_GRAPHQL_URL=http://localhost:8080/graphql | ||
NEXT_PUBLIC_INSPECT_URL=http://localhost:8080/inspect |
This file contains 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
This file contains 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
This file contains 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