sol-mev-core

(★ 3)

Solana MEV bot written in Rust. Features triangular arbitrage, Kamino/Solend liquidations, Yellowstone Geyser for real-time streaming, Jito bundles for atomic execution, and Bellman-Ford pathfinding in a modular, low-latency architecture.

sol-mev-core Latest Version Download

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

cargo build

View Details ▼

Compile a local package and all of its dependencies.

cargo {{[b|build]}}

Build the package or packages defined by the `Cargo.toml` manifest file in the local path:

cargo {{[b|build]}} {{[-r|--release]}}

Build artifacts in release mode, with optimizations:

cargo {{[b|build]}} --locked

Require that `Cargo.lock` is up to date:

🔍

cargo test

View Details ▼

Execute the unit and integration tests of a Rust package.

cargo {{[t|test]}} {{test_name}}

Only run tests containing a specific string in their names:

cargo {{[t|test]}} -- --test-threads {{count}}

Set the number of simultaneous running test cases:

cargo {{[t|test]}} {{[-r|--release]}}

Test artifacts in release mode, with optimizations:

🔍

pip install

View Details ▼

Install Python packages.

pip install {{package1 package2 ...}}

Install one or more packages:

pip install {{package1 package2 ...}} {{[-U|--upgrade]}}

Upgrade all specified packages to the latest version, installing any that are not already present:

pip install {{package}}=={{version}}

Install a specific version of a package:

🔍

python3

View Details ▼

This command is an alias of `python`.

tldr python

View documentation for the original command:

🔍

rustup

View Details ▼

Install, manage, and update Rust toolchains.
Some subcommands, such as `toolchain`, `target`, `update`, etc. have their own usage documentation.

rustup install nightly

Install the nightly toolchain for your system:

rustup default nightly

Switch the default toolchain to nightly so that the `cargo` and `rustc` commands will use it:

rustup override set nightly

Use the nightly toolchain when inside the current project but leave global settings unchanged:

🔍

wsl

View Details ▼

Manage the Windows Subsystem for Linux.

wsl {{shell_command}}

Start a Linux shell (in the default distribution):

wsl {{[-e|--exec]}} {{command}} {{command_arguments}}

Run a Linux command without using a shell:

wsl {{[-d|--distribution]}} {{distribution}} {{shell_command}}

Specify a particular distribution:

// repository documentation