Socket
Book a DemoInstallSign in
Socket

@yfi/keep3r-cli-jobs

Package Overview
Dependencies
Maintainers
6
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@yfi/keep3r-cli-jobs

Yearn Keep3r CLI Jobs

latest
Source
npmnpm
Version
1.2.0
Version published
Maintainers
6
Created
Source

image

Yearn Keep3r CLI Jobs

This repository contains the scripts to run Yearn's jobs.

How to Install

  • Install the package

yarn add @yfi/keep3r-cli-jobs

  • To run both Yearn Strategies versions (v1 and v2) change the package json to:
"@yfi/keep3r-cli-jobs": "@yfi/keep3r-cli-jobs@1.0.1"
"@yfi/keep3r-v2-cli-jobs": "@yfi/keep3r-cli-jobs@1.1.0"
  • Add the jobs to you configuration file
    {
        ...
        "jobs" : [
            ...,
            {
                "path": "node_modules/@yfi/keep3r-cli-jobs/dist/src/mainnet/harvest-v2"
            },
            {
                "path": "node_modules/@yfi/keep3r-cli-jobs/dist/src/mainnet/tend-v2"
            }
        ]
    }
  • Or add both versions for coexistence
    {
        ...
        "jobs" : [
            ...,
            {
                "path": "node_modules/@yfi/keep3r-cli-jobs/dist/src/mainnet/harvest-v2"
            },
            {
                "path": "node_modules/@yfi/keep3r-cli-jobs/dist/src/mainnet/tend-v2"
            },
            {
                "path": "node_modules/@yfi/keep3r-cli-jobs/dist/src/mainnet/tend-v2-beta"
            },
            {
                "path": "node_modules/@yfi/keep3r-v2-cli-jobs/dist/src/mainnet/harvest-v2"
            },
            {
                "path": "node_modules/@yfi/keep3r-v2-cli-jobs/dist/src/mainnet/tend-v2"
            }
        ]
    }
  • Run the Keep3r CLI

For further information about the jobs, follow the individual guides:

Keywords

keep3r

FAQs

Package last updated on 05 Oct 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts