massa-tools
v1.0.0
Published
Massa-tools is a Node.js script set designed to automate the process of operation on the Massa blockchain network. The first feature autoBuyRolls is checking account balances and buying rolls.
Downloads
4
Readme
Massa-tools
Massa-tools is a Node.js script set designed to automate the process of operation on the Massa blockchain network. The first feature autoBuyRolls is checking account balances and buying rolls.
Introduction
AutoBuyRolls periodically monitors an account's balance and executes a transaction to buy rolls when the balance meets certain criteria. It uses cron jobs for scheduling and integrates logging for tracking operations.
Installation
Clone the repository:
git clone https://github.com/AnyNodes/massa-tools.git
cd massa-tools
Install dependencies:
npm install
npm install -g pm2
Configuration
- Create a .env file in the root directory with the following content:
PRIVATE_KEY=your_private_key_here
Replace your_private_key_here with the private key associated with your Massa blockchain account.
- Adjust the cron schedule in src/autoBuyRolls.js if needed. By default, the script runs every hour (0 * * * *).
Usage
Once configured, AutoBuyRolls can be run with:
npm run start
The script will log information to the console and write detailed logs to log/autoBuyRolls.log.
Using PM2
PM2 is a process manager for Node.js applications that allows you to keep your application running continuously, manage logs, and more.
- Install PM2 globally if not already installed
npm install -g pm2
- Start the script with PM2
pm2 start src/autoBuyRolls.js --name autoBuyRolls
- To view logs:
pm2 logs autoBuyRolls
- To stop the script:
pm2 stop autoBuyRolls
- To restart the script:
pm2 restart autoBuyRolls
- To delete the script from PM2:
pm2 delete autoBuyRolls
Logs
Logs for AutoBuyRolls are stored in the log directory. Detailed information about each run, including balance queries, transaction data, and errors encountered, can be found in autoBuyRolls.log.
Contributing
Contributions are welcome! If you find any issues or have suggestions for improvements, please open an issue or submit a pull request.
License
This project is licensed under the MIT License.