Skip to main content

rust_coinselect/
lib.rs

1#![doc = include_str!("../README.md")]
2
3/// Collection of coin selection algorithms: Branch and Bound (BnB), CoinGrinder, First-In-First-Out (FIFO), and Lowest Larger
4pub mod algorithms;
5/// Wrapper API that runs all coin selection algorithms in parallel and returns the result with lowest waste
6pub mod selectcoin;
7/// Core types and structs used throughout the library including OutputGroup and CoinSelectionOpt
8pub mod types;
9/// Helper functions with tests for fee calculation, weight computation, and waste metrics
10pub mod utils;