-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
31 lines (27 loc) · 998 Bytes
/
.env.example
File metadata and controls
31 lines (27 loc) · 998 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
28
29
30
31
# Supabase Configuration
SUPABASE_URL=your_supabase_url_here
SUPABASE_ANON_KEY=your_supabase_anon_key_here
SUPABASE_SERVICE_ROLE_KEY=your_supabase_service_role_key_here
# API Keys
ETHERSCAN_API_KEY=your_etherscan_api_key
ALCHEMY_API_KEY=your_alchemy_api_key
# Application Settings
HOST=localhost
PORT=8080
WHALE_THRESHOLD=10000
# Smart Money Discovery Controls (optional)
# Limit number of routers scanned per run (default 5)
SMART_MONEY_MAX_ROUTERS_PER_RUN=5
# Time budget in seconds for discovery (default 60)
SMART_MONEY_DISCOVERY_TIME_BUDGET_SEC=60
# Per-request timeout to external APIs (default 5)
SMART_MONEY_REQUEST_TIMEOUT_SEC=5
# Set to 1 to disable network calls and use DB-only fallback
SMART_MONEY_DISABLE_NETWORK=0
# Backfill bounds (optional)
# Per-request timeout while backfilling
SMART_MONEY_BACKFILL_REQUEST_TIMEOUT_SEC=8
# Max tx pulled per address (cap 10000)
SMART_MONEY_BACKFILL_MAX_TX=2500
# Per-address time budget in seconds
SMART_MONEY_BACKFILL_TIME_BUDGET_SEC=120