Initial commit: Set up MEV bot project structure

This commit is contained in:
Krypto Kajun
2025-09-12 01:16:30 -05:00
commit ba80b273e4
22 changed files with 1035 additions and 0 deletions

16
scripts/run.sh Executable file
View File

@@ -0,0 +1,16 @@
#!/bin/bash
# run.sh - Run the MEV bot
echo "Running MEV bot..."
# Build the application first
./scripts/build.sh
if [ $? -eq 0 ]; then
# Run the application
./bin/mev-bot start
else
echo "Failed to build the application!"
exit 1
fi