Socket
Book a DemoInstallSign in
Socket

@stove-labs/arbitrage-bot-reporter

Package Overview
Dependencies
Maintainers
2
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@stove-labs/arbitrage-bot-reporter

console reporter for the arbitrage bot

latest
Source
npmnpm
Version
1.2.0
Version published
Maintainers
2
Created
Source

@stove-labs/arbitrage-bot-reporter

This plugin is low-level package for reporting events in cli using listr2.

Usage

import { ConsoleReporterPlugin } from '../src/consoleReporterPlugin';
import { Listr } from 'listr2';

const reporter = new ConsoleReporterPlugin();

new Listr(
  [
    {
      task: async (_, task): Promise<void> => {
        // This try-catch block is here because an Error messes up the formatting
        try {
          // fetch prices from exchanges
          reportFetchPricesStart(task);
          const prices = await exchangeManager.fetchPrices(
            baseToken,
            quoteToken
          );
          reportFetchPricesEnd(task, prices);

          // find arbitrage, calculate profit opportunity
          reportFindProfitOpportunityStart(task);
          const profitOpportunity: ProfitOpportunity =
            plugins.profitFinder.findProfits(prices);
          reportFindProfitOpportunityEnd(task, profitOpportunity);
          // restart lifecycle if no profit was found
          if (!hasPositiveProfit(task, profitOpportunity)) return;

          // execute swaps for arbitrage
          reportSwapStart(task);
          const swapResults: SwapResult[] =
            await plugins.swapExecutionManager.executeSwaps(
              profitOpportunity.swaps
            );
          reportSwapEnd(task, swapResults);
        } catch (e) {
          task.output = '';
          throw e;
        }
      },
      retry: NUMBER_OF_RETRIES,
    },
  ],
  {
    concurrent: false,
    exitOnError: true,
  }
).run();

const reportFetchPricesStart = (task) => {
  task.title =
    reporter.report({
      type: 'LIFECYCLE_START',
    }) + reporter.report({ type: 'PRICES_FETCHED' });
};

const reportFetchPricesEnd = (task, prices: ExchangePrice[]) => {
  task.title =
    reporter.report({
      type: 'LIFECYCLE_START',
    }) +
    reporter.report({
      type: 'PRICES_FETCHED',
      prices,
    });
};

const reportFindProfitOpportunityStart = (task) => {
  task.output = reporter.report({ type: 'PROFIT_FOUND' });
};

const reportFindProfitOpportunityEnd = (task, profitOpportunity) => {
  task.title +=
    '\n' +
    reporter.report({
      type: 'PROFIT_FOUND',
      profitOpportunity,
    });
};

const reportSwapStart = (task) => {
  task.output = reporter.report({ type: 'SWAPS_DONE' });
};

const reportSwapEnd = (task, swapResults: SwapResult[]) => {
  task.title +=
    '\n' +
    reporter.report({
      type: 'SWAPS_DONE',
      swapResults,
    });
};

Keywords

console

FAQs

Package last updated on 28 Nov 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