You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 17, 2025. It is now read-only.
/// Collection of coin selection algorithms including Knapsack, Branch and Bound (BNB), First-In First-Out (FIFO), Single-Random-Draw (SRD), and Lowest Larger
1
5
pubmod algorithms;
6
+
/// Wrapper API that runs all coin selection algorithms in parallel and returns the result with lowest waste
2
7
pubmod selectcoin;
8
+
/// Core types and structs used throughout the library including OutputGroup and CoinSelectionOpt
3
9
pubmod types;
10
+
/// Helper functions with tests for fee calculation, weight computation, and waste metrics
0 commit comments