Completed clean root directory structure: - Root now contains only: .git, .env, docs/, orig/ - Moved all remaining files and directories to orig/: - Config files (.claude, .dockerignore, .drone.yml, etc.) - All .env variants (except active .env) - Git config (.gitconfig, .github, .gitignore, etc.) - Tool configs (.golangci.yml, .revive.toml, etc.) - Documentation (*.md files, @prompts) - Build files (Dockerfiles, Makefile, go.mod, go.sum) - Docker compose files - All source directories (scripts, tests, tools, etc.) - Runtime directories (logs, monitoring, reports) - Dependency files (node_modules, lib, cache) - Special files (--delete) - Removed empty runtime directories (bin/, data/) V2 structure is now clean: - docs/planning/ - V2 planning documents - orig/ - Complete V1 codebase preserved - .env - Active environment config (not in git) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
14 lines
672 B
Bash
14 lines
672 B
Bash
# MEV Bot Production Environment
|
|
MEV_BOT_ENCRYPTION_KEY=bc10d845ff456ed03c03cda81835436435051c476836c647687a49999439cdc1
|
|
CONTRACT_ARBITRAGE_EXECUTOR=0x6C2B1c6Eb0e5aB73d8C60944c74A62bfE629c418
|
|
CONTRACT_FLASH_SWAPPER=0x7Cc97259cBe0D02Cd0b8A80c2E1f79C7265808b4
|
|
CONTRACT_DATA_FETCHER=0xC6BD82306943c0F3104296a46113ca0863723cBD
|
|
# CRITICAL FIX: Changed from WSS to HTTPS to avoid 403 Forbidden error
|
|
# The Chainstack WSS endpoint returns "websocket: bad handshake (HTTP status 403 Forbidden)"
|
|
# Using HTTPS RPC endpoint instead for stable connection
|
|
ARBITRUM_RPC_ENDPOINT=https://arb1.arbitrum.io/rpc
|
|
ARBITRUM_WS_ENDPOINT=
|
|
METRICS_ENABLED=true
|
|
METRICS_PORT=9090
|
|
LOG_LEVEL=debug
|