-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy path.env.example
More file actions
22 lines (17 loc) · 799 Bytes
/
.env.example
File metadata and controls
22 lines (17 loc) · 799 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# IPC Faucet Configuration
# Copy this file to .env and fill in your actual values
# NEVER commit .env to version control
# Private key for the faucet wallet (without 0x prefix or with it)
# This account will distribute funds to requesters
# Example: PRIVATE_KEY=0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef
PRIVATE_KEY=0xYOUR_PRIVATE_KEY_HERE
# RPC URL for the IPC subnet
# Example: http://localhost:8545 for local development
# Example: http://node-1.test.ipc.space:8545 for test network
RPC_URL=http://localhost:8545
# Amount to send per faucet request (in native token units)
FAUCET_AMOUNT=10
# Rate limiting window in milliseconds (86400000 = 24 hours)
RATE_LIMIT_WINDOW=86400000
# Maximum number of requests per address within the rate limit window
RATE_LIMIT_MAX=3