
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
@stove-labs/arbitrage-bot-reporter
Advanced tools
@stove-labs/arbitrage-bot-reporter
This plugin is low-level package for reporting events in cli using listr2.
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,
});
};
FAQs
console reporter for the arbitrage bot
We found that @stove-labs/arbitrage-bot-reporter demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
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.
Security News
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.