// the find
regolith-labs/ore-cli-legacy
Command line interface for ORE cryptocurrency mining.
A Rust CLI for mining ORE, a proof-of-work token on Solana. It handles keypair management, transaction submission, and pool mining. Explicitly deprecated in favor of a newer version.
Clean command separation under src/command/ — each subcommand gets its own file, which makes the codebase easy to navigate. Priority fee handling is broken out into its own module, which is the right call given how volatile Solana fee markets are. The rust-toolchain.toml pins the exact toolchain, so builds are reproducible without guessing. 1500 stars and 650 forks means there's a real community that has exercised this code.
It's deprecated — the README says so in the title, which means any bug you hit is unlikely to get fixed upstream. The README is nearly empty: install, one command, join Discord. No documentation on pool configuration, priority fee tuning, or what the benchmark command actually measures. No tests visible anywhere in the tree. Crypto mining CLI means the transaction-signing path is security-sensitive, and there's no evidence it's been audited or even lightly reviewed for key handling mistakes.