- Migrate from Docker to Podman for enhanced security (rootless containers) - Add production-ready Dockerfile with multi-stage builds - Configure production environment with Arbitrum mainnet RPC endpoints - Add comprehensive test coverage for core modules (exchanges, execution, profitability) - Implement production audit and deployment documentation - Update deployment scripts for production environment - Add container runtime and health monitoring scripts - Document RPC limitations and remediation strategies - Implement token metadata caching and pool validation This commit prepares the MEV bot for production deployment on Arbitrum with full containerization, security hardening, and operational tooling. 🤖 Generated with Claude Code Co-Authored-By: Claude <noreply@anthropic.com>
50 lines
1.9 KiB
Modula-2
50 lines
1.9 KiB
Modula-2
module github.com/fraktal/mev-beta
|
|
|
|
go 1.25.0
|
|
|
|
require (
|
|
github.com/ethereum/go-ethereum v1.16.7
|
|
github.com/gorilla/websocket v1.5.3
|
|
github.com/holiman/uint256 v1.3.2
|
|
github.com/joho/godotenv v1.5.1
|
|
github.com/lib/pq v1.10.9
|
|
github.com/mattn/go-sqlite3 v1.14.32
|
|
github.com/stretchr/testify v1.11.1
|
|
github.com/urfave/cli/v2 v2.27.7
|
|
golang.org/x/crypto v0.43.0
|
|
golang.org/x/sync v0.17.0
|
|
golang.org/x/time v0.14.0
|
|
gopkg.in/yaml.v3 v3.0.1
|
|
)
|
|
|
|
require (
|
|
github.com/Microsoft/go-winio v0.6.2 // indirect
|
|
github.com/ProjectZKM/Ziren/crates/go-runtime/zkvm_runtime v0.0.0-20251106012722-c7be33e82a11 // indirect
|
|
github.com/bits-and-blooms/bitset v1.24.3 // indirect
|
|
github.com/consensys/gnark-crypto v0.19.2 // indirect
|
|
github.com/cpuguy83/go-md2man/v2 v2.0.7 // indirect
|
|
github.com/crate-crypto/go-eth-kzg v1.4.0 // indirect
|
|
github.com/crate-crypto/go-ipa v0.0.0-20240724233137-53bbb0ceb27a // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/deckarep/golang-set/v2 v2.8.0 // indirect
|
|
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.4.0 // indirect
|
|
github.com/ethereum/c-kzg-4844/v2 v2.1.5 // indirect
|
|
github.com/ethereum/go-verkle v0.2.2 // indirect
|
|
github.com/fsnotify/fsnotify v1.9.0 // indirect
|
|
github.com/go-ole/go-ole v1.3.0 // indirect
|
|
github.com/google/uuid v1.6.0 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/russross/blackfriday/v2 v2.1.0 // indirect
|
|
github.com/shirou/gopsutil v3.21.11+incompatible // indirect
|
|
github.com/stretchr/objx v0.5.2 // indirect
|
|
github.com/supranational/blst v0.3.16 // indirect
|
|
github.com/tklauser/go-sysconf v0.3.15 // indirect
|
|
github.com/tklauser/numcpus v0.10.0 // indirect
|
|
github.com/xrash/smetrics v0.0.0-20250705151800-55b8f293f342 // indirect
|
|
github.com/yusufpapurcu/wmi v1.2.4 // indirect
|
|
golang.org/x/sys v0.37.0 // indirect
|
|
)
|
|
|
|
// Replace with your actual fork or repository when available
|
|
replace github.com/fraktal/mev-beta => ./
|