-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
37 lines (32 loc) · 1.76 KB
/
.env.example
File metadata and controls
37 lines (32 loc) · 1.76 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
35
36
37
# =============================================================================
# EVM Mempool Sniper Bot - Environment Configuration
# =============================================================================
# Copy this file to .env and fill in your values
# NEVER commit .env to version control!
# -----------------------------------------------------------------------------
# RPC Endpoints (WebSocket)
# Get from: https://alchemy.com or https://infura.io
# -----------------------------------------------------------------------------
ETH_WSS=wss://eth-mainnet.g.alchemy.com/v2/YOUR_API_KEY
BASE_WSS=wss://base-mainnet.g.alchemy.com/v2/YOUR_API_KEY
ARB_WSS=wss://arb-mainnet.g.alchemy.com/v2/YOUR_API_KEY
# -----------------------------------------------------------------------------
# Wallet Configuration
# ⚠️ SECURITY: Use a dedicated wallet with limited funds!
# -----------------------------------------------------------------------------
PRIVATE_KEY=your_private_key_here
# -----------------------------------------------------------------------------
# Flashbots Configuration
# For frontrun protection on Ethereum mainnet
# -----------------------------------------------------------------------------
FLASHBOTS_RELAY=https://relay.flashbots.net
# -----------------------------------------------------------------------------
# Optional: Blocknative API
# For advanced mempool monitoring
# Get from: https://blocknative.com
# -----------------------------------------------------------------------------
# BLOCKNATIVE_API_KEY=your_blocknative_key
# -----------------------------------------------------------------------------
# Demo Mode (set to any value to enable demo without RPC)
# -----------------------------------------------------------------------------
DEMO_MODE=true