-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy path.env.example
More file actions
22 lines (18 loc) · 882 Bytes
/
Copy path.env.example
File metadata and controls
22 lines (18 loc) · 882 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Elata Protocol Environment Variables
# Copy this file to .env and fill in your values
# Deployment Addresses
ADMIN_MSIG=0x0000000000000000000000000000000000000000 # Gnosis Safe multisig address
INITIAL_TREASURY=0x0000000000000000000000000000000000000000 # Initial token recipient address
# RPC URLs
MAINNET_RPC_URL=https://mainnet.infura.io/v3/YOUR_PROJECT_ID
SEPOLIA_RPC_URL=https://sepolia.infura.io/v3/YOUR_PROJECT_ID
BASE_RPC_URL=https://mainnet.base.org
BASE_SEPOLIA_RPC_URL=https://sepolia.base.org
# API Keys for Contract Verification
ETHERSCAN_API_KEY=YOUR_ETHERSCAN_API_KEY
BASESCAN_API_KEY=YOUR_BASESCAN_API_KEY
# Security Notes:
# 1. Never commit real private keys to version control
# 2. Use environment variables or secure key management
# 3. Consider using hardware wallets for mainnet deployments
# 4. Test thoroughly on testnets before mainnet deployment