forked from ethereum-attestation-service/eas-is-true
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #85 from daqhris/devin-fix-web3-app
Fix ENS resolution and WalletConnect API errors
- Loading branch information
Showing
6 changed files
with
66 additions
and
38 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,22 @@ | ||
NEXT_PUBLIC_WALLET_CONNECT_PROJECT_ID=your_wallet_connect_project_id_here | ||
POAP_API_KEY=your_poap_api_key_here | ||
ALCHEMY_API_KEY=your_alchemy_api_key_here | ||
ETHEREUM_RPC_URL=https://eth-mainnet.alchemyapi.io/v2/${ALCHEMY_API_KEY} | ||
PRIVATE_KEY=your_ethereum_wallet_private_key_here | ||
# WalletConnect Project ID (keep this value as is, it's already set correctly) | ||
NEXT_PUBLIC_WALLET_CONNECT_PROJECT_ID=CHPA6N569JF66K6G1WQBY4WWW7SU6N5P72 | ||
|
||
# Replace with actual values in a production environment | ||
POAP_API_KEY=dummy_poap_api_key | ||
ALCHEMY_API_KEY=dummy_alchemy_api_key | ||
ETHEREUM_RPC_URL=https://eth-mainnet.alchemyapi.io/v2/dummy_alchemy_api_key | ||
PRIVATE_KEY=0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef | ||
# Keep this private key secret and never commit it to version control | ||
EAS_CONTRACT_ADDRESS=0x4200000000000000000000000000000000021A42 # Optimism Sepolia testnet address | ||
SCHEMA_REGISTRY_ADDRESS=0x4200000000000000000000000000000000021A43 # Optimism Sepolia testnet address | ||
ETHERSCAN_API_KEY=your_etherscan_api_key_here | ||
BLOCKSCOUT_API_KEY=your_blockscout_api_key_here | ||
BLOCKSCOUT_OPTIMISM_API_KEY=your_blockscout_optimism_api_key_here | ||
|
||
# Ethereum Attestation Service (EAS) contract addresses (Optimism Sepolia testnet) | ||
EAS_CONTRACT_ADDRESS=0x4200000000000000000000000000000000021A42 | ||
SCHEMA_REGISTRY_ADDRESS=0x4200000000000000000000000000000000021A43 | ||
|
||
# API Keys (replace with actual values in production) | ||
ETHERSCAN_API_KEY=dummy_etherscan_api_key | ||
BLOCKSCOUT_API_KEY=dummy_blockscout_api_key | ||
BLOCKSCOUT_OPTIMISM_API_KEY=dummy_blockscout_optimism_api_key | ||
|
||
# Deployer information | ||
DEPLOYER_ETH_ADDRESS=0xF0bC5CC2B4866dAAeCb069430c60b24520077037 | ||
DEPLOYER_ENS_NAME=mission-enrollment.daqhris.eth |
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
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 |
---|---|---|
|
@@ -29,7 +29,8 @@ | |
"baseUrl": ".", | ||
"types": [ | ||
"jest", | ||
"node" | ||
"node", | ||
"react" | ||
], | ||
"plugins": [ | ||
{ | ||
|