-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
41 lines (34 loc) · 1.24 KB
/
.env.example
File metadata and controls
41 lines (34 loc) · 1.24 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
# ============================================
# Network Configuration
# ============================================
# Options: anvil, sepolia
NETWORK=anvil
# ============================================
# Anvil Local Chain (Foundry)
# ============================================
ANVIL_HOST=127.0.0.1
ANVIL_PORT=8545
# For Docker, use: ANVIL_HOST=anvil
# ============================================
# Sepolia Testnet Configuration
# ============================================
# Get your RPC URL from: https://infura.io or https://alchemy.com
SEPOLIA_RPC_URL=https://sepolia.infura.io/v3/YOUR_INFURA_PROJECT_ID
# Or use Alchemy: https://eth-sepolia.g.alchemy.com/v2/YOUR_ALCHEMY_KEY
# ============================================
# Deployment Keys
# ============================================
# Private key for deploying to Sepolia (without 0x prefix)
# NEVER commit your real private key!
PRIVATE_KEY=
# Mnemonic phrase (alternative to PRIVATE_KEY, safer for development)
MNEMONIC=
# ============================================
# API Keys (Optional but recommended)
# ============================================
# Infura Project ID
INFURA_PROJECT_ID=
# Alchemy API Key
ALCHEMY_API_KEY=
# Etherscan API Key (for contract verification)
ETHERSCAN_API_KEY=