-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
56 lines (43 loc) · 2.33 KB
/
.env.example
File metadata and controls
56 lines (43 loc) · 2.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# EVVM Testnet Contracts Environment Configuration
# Copy this file to .env and fill in your actual values
# =======================================================================================
# RPC ENDPOINTS
# =======================================================================================
# RPC URL for the target(s) host blockchain network
# You can get others in https://chainlist.org/
# Ethereum Sepolia Testnet RPC URL
# Primary: 0xRPC (reliable and fast)
#RPC_URL="https://0xrpc.io/sep"
# Alternatives (if primary fails):
# https://ethereum-sepolia.rpc.subquery.network/public (fastest: 0.165s)
# https://ethereum-sepolia.gateway.tatum.io
# https://sepolia.drpc.org
# https://gateway.tenderly.co/public/sepolia
# Arbitrum Sepolia Testnet RPC URL
# Primary: Official Arbitrum endpoint (most reliable)
#RPC_URL="https://sepolia-rollup.arbitrum.io/rpc"
# Alternatives (if primary fails):
# https://arbitrum-sepolia.gateway.tatum.co (fastest: 0.167s)
# https://endpoints.omniatech.io/v1/arbitrum/sepolia/public
# https://arbitrum-sepolia.drpc.org
# https://api.zan.top/arb-sepolia
# Configuration for non cross-chain EVVM ================================================
# RPC URL for host blockchain to deploy non cross-chain EVVM instance
RPC_URL="http://0.0.0.0:8545"
# Configuration for cross-chain EVVM ====================================================
# RPC URL for external blockchain de deploy TreasuryExternalChainStation.sol
EXTERNAL_RPC_URL="https://sepolia-rollup.arbitrum.io/rpc"
# RPC URL for host blockchain to deploy TreasuryHostChainStation.sol and EVVM instance
HOST_RPC_URL="https://0xrpc.io/sep"
# Configuration for EVVM registration ===================================================
# RPC URL for optional registration on Ethereum Sepolia Testnet
EVVM_REGISTRATION_RPC_URL="https://gateway.tenderly.co/public/sepolia"
# =======================================================================================
# BLOCKCHAIN EXPLORERS API KEYS
# =======================================================================================
# Etherscan v2 API Key (for contract verification on Ethereum networks)
# Get from: https://etherscan.io/apis
ETHERSCAN_API="YOUR_ETHERSCAN_API_KEY"
# Blockscout Homepage (for alternative block explorers)
# Example: https://sepolia.arbiscan.io or https://sepolia.etherscan.io
BLOCKSCOUT_HOMEPAGE=""