-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.env.example
More file actions
34 lines (28 loc) · 1.02 KB
/
Copy path.env.example
File metadata and controls
34 lines (28 loc) · 1.02 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
# ==================================
# FansOnly Deployment Configuration
# ==================================
# DEPLOYER WALLET
# Your private key (DO NOT COMMIT THIS - add .env to .gitignore)
PRIVATE_KEY=your_private_key_here
# ORACLE ADDRESS
# Backend service address that will award points and process cashouts
# This should be a secure backend wallet, NOT your deployer wallet
ORACLE_ADDRESS=0x0000000000000000000000000000000000000000
# RPC ENDPOINTS
# Base Mainnet
BASE_RPC_URL=https://mainnet.base.org
# Base Sepolia Testnet
BASE_SEPOLIA_RPC_URL=https://sepolia.base.org
# BLOCK EXPLORERS
# For contract verification
BASESCAN_API_KEY=your_basescan_api_key_here
ETHERSCAN_API_KEY=your_etherscan_api_key_here
# OPTIONAL: Test accounts for testnet deployment
TEST_CREATOR=0x0000000000000000000000000000000000000000
TEST_FAN=0x0000000000000000000000000000000000000000
# ==================================
# Network Chain IDs
# ==================================
# Base Mainnet: 8453
# Base Sepolia: 84532
# ==================================