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

15
scripts/test.sh Executable file
View File

@@ -0,0 +1,15 @@
#!/bin/bash
# test.sh - Run tests for the MEV bot
echo "Running tests..."
# Run all tests
go test -v ./...
if [ $? -eq 0 ]; then
echo "All tests passed!"
else
echo "Some tests failed!"
exit 1
fi