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

@jolt-network/cli-jobs

v0.1.6

Published

Jolt CLI jobs

Downloads

5

Readme

Jolt CLI jobs

@jolt-network/cli-jobs aims to provide workers using @jolt-network/cli out-of-the-box jobs they can run immediately, as well as examples for job owners to follow if they wish to create scripts of their own jobs in order to add extra incentives for workers using the CLI to run theirs.

Adding a job

For a detailed breakdown of how to successfully write a Jolt CLI job script, please refer to the Creating a Jolt CLI compatible job section.

If a job owner has written a script to have workers using Jolt CLI immediately run his job, he will have to publish this script as a separate npm package for workers to install and run.

We recommend job owners to add their packages in a specific section of their documentation where workers can easily find it.

We have chosen this method to reduce the possibility of people uploading malicious packages disguised as jobs and distracted workers installing them. We urge workers running Jolt CLI to be careful with the packages they install, and to only download jobs from trusted sources.

Testnet jobs

This repository comes with a JOLT/ETH price oracle job deployed to Rinkeby that serves as a safe and easy way to test whether users running Jolt CLI have setup their workers correctly:

Job paths

To choose what jobs to run, you will need to add their paths to your .config.json file. You can find each job path in their respective docs.

Creating a Jolt CLI compatible job

A Jolt CLI compatible job is as easy as it gets. You will only need to create two files:

  • metadata.json: Super simple .json file containing the name of the job. This is an example of how it would look like if your job was called My First Job.

    {
      "name": "My first job"
    }

    Right now this file seems unimportant, but in future versions it will be used to add extra information about each specific job. An example of this, would be the tokens the job uses to pay the workers. Right now we assume they pay in JOLT or ETH—which will help the Jolt-CLI properly calculate the profitability of the transaction. In the current version, the name is used to create an id for each job, which will help the Jolt CLI know which job is currently in progress to avoid rerunning it unnecessarily.

  • job.ts: This file will contain the logic of the job script, and therefore it will be the file the Jolt CLI runs when it intends to work your job. Writing the logic in this file can sound like a daunting task at first, but we have built everything so that there's a lot of shared logic between scripts, which makes creating a script for your job a simple task. After going through the examples you will find that all the jobs follow a similar pattern to this one:

    • Declare a variable that contains the address of your job.

    • Create an async function called getWorkableTxs which will take args as arguments. This function will contain all the important logic to create what we call workable groups and send them along with an id to the Jolt CLI. A workable group is an array that contains objects that have:

      • The target block at which to perform a transaction.
      • An array containing the populated transactions to be performed
      • An id to identify each array in the workable group, so it's easier for workers to read the logs.

      For example, let's say ExampleJob needs a worker to call the work function and let's say the worker establishes 100 as the target block. When a worker executes getWorkableTxs, this function will output the following working group:

      workableGroup = [{
      	targetBlock: 100,
      	txs: [populated tx data to call work],
      	logId: some randomly generated id
      }]

      This working group will then be passed to the Jolt CLI job-wrapper.ts file, for additional checks before sending the transactions directly to the network or using flashbots. All of the following points will be different points of logic inside getWorkableTxs

    • Create a correlationId, which will be used to track if the current job being executed to avoid rerunning it unnecessarily.

    • Create an if check that checks, using the correlationId, whether that job should be rerun in a block or not. For example: the worker runs your job at block 100, but specifies 105 as its target block. The correlationId and this additional check will prevent all the logic to check whether the job is workable or not from being rerun in the blocks 101, 102, 103, 104, where it's not necessary.

    • Create a variable logMetadata containing all the relevant information you would like the worker to see in their logs. We recommend creating an object containing the name of your job, the current block, and a logId to help identify each job.

    • Create a logConsole variable that calls the prelog utility function passing in the logMetadata as an argument. This is simply used to log better logs. It appends all the information established in logMetadata to each log that uses logConsole instead of console.log

    • Create a variable containing your job's contract. This will be used to populate the transactions the worker will end up running.

    • Create a try catch finally statement.

    • The try statement will call the work function to check if, in the current block, that job can be worked or if it's on cooldown. If it is workable, it adds a log and then creates a workableGroup variable initialized to an empty array. things get interesting after this, because we know the job is workable, we can now populate the transactions we will need to send to the network or flashbots in order to execute this job, and then push an object containing those transactions along with the target block and id of each one to our workableGroup. To populate transactions for consequent blocks we use a for loop that will push as many objects to workableGroups as the worker has passed as the bundleBurst parameter. In these objects, the array of populated transactions will always be the same, but the target block and the id will change. If everything went well, getWorkableTxs sends an object containing the workable groups and the current job correlationId to the Jolt CLI, which will be received by job-wrapper.ts.

    • The catch statement will catch any error and log out a message for the worker to read. The most common error that will occur is that the job is currently in cooldown, therefore it can't be worked.

    • The finally statement will kill the process once it has concluded.

    • Lastly, and outside the getWorkableTxs function, we export getWorkableTxs.

    This is the shared structure among jobs and it's exactly the structure that can be found in the JoltNativeCurrencyPriceOracle example we provide. However, some jobs will have protocol-specific logic that will modify this structure ever-so-slightly.

    For example: some jobs will have multiple strategies that need to be run, while others will require the worker to call a function before calling the work function.

If you still have doubts as to how to implement a script for your job, reach out to us!