- ✅ Automatic wallet creation
- ✅ Multi-wallet management
- ✅ Scheduled automatic node restarts
- ✅ Proxy validation
- ✅ Proxy usage statistics
- ✅ User-friendly interactive interface
- Node.js v16+
- NPM v7+
- Operating System: Linux, Windows, or macOS
git clone https://github.com/nsnsop/Monadscore-Auto-Bot.git
cd Monadscore-Auto-Bot
npm install
Make sure to add your referral code to the referral.txt
file in the root directory:
echo "YOUR_REFERRAL_CODE" > referral.txt
To use proxies, add a list of proxies to the proxies.txt
file:
echo "socks5://username:password@ip:port" > proxies.txt
echo "socks5://username:password@ip:port" >> proxies.txt
# Add more proxies
npm start
# or
node index.js
After running the program, you will see the main menu with the following options:
- Create New Wallet - Create a new wallet and register it with Monad
- Display Existing Wallets - View the list of wallets created
- Restart Nodes for All Wallets - Restart nodes for registered wallets
- Validate Proxies - Validate available proxies
- Display Proxy Statistics - View proxy usage statistics
- Start Continuous Restart Mode - Start automatic restart mode based on schedule
- Exit - Exit the program
This bot can automatically restart nodes at specified times:
# Configure restart times in the config.js file
# Default: 00:00 WIB
Bot configuration can be modified in the config.js
file:
// Example configuration
const CONFIG = {
restartHour: 0, // Hour for automatic restart (0-23)
restartMinute: 0, // Minute for automatic restart (0-59)
apiBase: "https://api.example.com", // API endpoint
timeout: 30000, // Request timeout in ms
retries: 3, // Number of retries if request fails
walletFile: "wallets.json", // File to store wallets
};
- Ensure a stable internet connection when using the bot
- Each wallet requires a separate proxy for optimal results
- It is recommended to use a VPN for additional security
- Wallet files are stored locally and never sent to the server
- Private keys are encrypted before being stored
- Use with caution and at your own risk
MIT
If you like this project, please star it on GitHub!
Contributions are always welcome. Please create a pull request or issue if you find bugs or have suggestions for new features.