├── .gitignore └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .env -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Solana Arbitrage Bot 2 | [![Discord](https://img.shields.io/badge/Discord-7289DA?style=for-the-badge&logo=discord&logoColor=white)](https://discord.gg/6DTGbMNYuA)[![YouTube](https://img.shields.io/badge/YouTube-FF0000?style=for-the-badge&logo=youtube&logoColor=white)](https://www.youtube.com/playlist?list=PLMIFlNMah1MnCqDsEJ0P2QhDr93O9KYmF)[![X](https://img.shields.io/badge/X-000000?style=for-the-badge&logo=x&logoColor=white)](https://x.com/RudeLabs_io) 3 | 4 | [![](https://dcbadge.limes.pink/api/server/6DTGbMNYuA)](https://discord.gg/6DTGbMNYuA) 5 | 6 | ### [Video Tutorial](https://www.youtube.com/playlist?list=PLMIFlNMah1MnCqDsEJ0P2QhDr93O9KYmF) 7 | 8 | **Over $500k profit produced for users since March 2024!** 9 | 10 | ## Requirements 11 | - Ubuntu >= 22 OS Server ([Nodestop](https://billing.nodestop.io/aff.php?aff=88) and [Tier.net](https://billing.tier.net/aff.php?aff=257) are good) 12 | - 12 cores or more 13 | - Baremetal/Dedicated server is suggested 14 | - RPC + GRPC connections ([Pixel](https://discord.gg/RYnvkvqxbF), [Shyft](https://discord.gg/mkax7WUu3z), [Rift](https://discord.gg/riftnode), [Shark](https://discord.gg/kMEdGGfuqb)) 15 | - Profit scales with capital (larger trade sizes, larger profits) 16 | 17 | ### Ask [Claude](https://claude.ai/)/ChatGPT how to remote into your Ubuntu server 18 | - This is different for every PC's Operating System 19 | - You will receive the login credentials from your server provider 20 | - For example, if your PC is Windows 10, you need ask [Claude](https://claude.ai/)/ChatGPT how you would remote into your Ubuntu server using Windows 10 21 | 22 | ## Installation on your Ubuntu >=22 Server 23 | 24 | ### New Server Setup 25 | Run these commands sequentially: 26 | ```bash 27 | sudo apt update && apt upgrade -y && apt install -y screen unzip && apt install python3-pip -y 28 | ``` 29 | ```bash 30 | pip3 install requests python-dotenv 31 | ``` 32 | ```bash 33 | wget https://github.com/AlexRubik/rude-bot-solana/releases/download/v3.2.0-alpha/rude-bot-alpha3_2_0.zip 34 | ``` 35 | ```bash 36 | unzip rude-bot-alpha3_2_0.zip 37 | ``` 38 | ```bash 39 | cd rude-bot-alpha3_2_0 40 | ``` 41 | Use the --help arg to see all the possible args and what they do: 42 | ```bash 43 | ./rude --help 44 | ``` 45 | Quickstart Guide to getting the bot running ASAP: 46 | ```bash 47 | ./rude --overview 48 | ``` 49 | 50 | 3.2.0 51 | --------------------------------------------------------------------------------