-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
27 lines (21 loc) · 897 Bytes
/
Copy path.env.example
File metadata and controls
27 lines (21 loc) · 897 Bytes
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
# ===========================================
# Network RPC URLs
# ===========================================
# Ethereum Mainnet (프로덕션)
# Alchemy: https://www.alchemy.com/
# Infura: https://infura.io/
MAINNET_RPC_URL="https://eth-mainnet.g.alchemy.com/v2/YOUR_API_KEY"
# Sepolia Testnet (개발/테스트)
SEPOLIA_RPC_URL="https://eth-sepolia.g.alchemy.com/v2/YOUR_API_KEY"
# ===========================================
# Deployment Keys
# ===========================================
# 배포용 개인키 (0x 접두사 포함)
# MetaMask > 계정 세부정보 > 비공개 키 표시
# 주의: 절대 Git에 커밋하지 마세요!
PRIVATE_KEY="0xyour_private_key_here"
# ===========================================
# Block Explorer API Keys
# ===========================================
# Etherscan API 키 (https://etherscan.io/myapikey)
ETHERSCAN_API_KEY="your_etherscan_api_key"