Files
mev-beta/scripts/run.sh
2025-09-12 01:16:30 -05:00

16 lines
252 B
Bash
Executable File

#!/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