npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

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

  1. 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.

  1. 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.

  1. Install PM2 globally if not already installed
npm install -g pm2
  1. Start the script with PM2
pm2 start src/autoBuyRolls.js --name autoBuyRolls
  1. To view logs:
pm2 logs autoBuyRolls
  1. To stop the script:
pm2 stop autoBuyRolls
  1. To restart the script:
pm2 restart autoBuyRolls
  1. 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.