15 unstable releases (3 breaking)
| 0.4.1 | Oct 5, 2025 |
|---|---|
| 0.4.0 | Jul 15, 2025 |
| 0.3.3 | Apr 25, 2025 |
| 0.2.8 |
|
| 0.2.4 | Mar 9, 2024 |
#7 in #sv
245 downloads per month
Used in 2 crates
290KB
6.5K
SLoC
rust-bitcoinsv
NOTE: This library is incomplete and undergoing extensive changes at the moment.
Breaking Changes in v0.4.0
The PrivateKey::from<String> implementation has been changed to use TryFrom<String> to improve error handling. Update your code:
// Before (v0.3.x)
let key = PrivateKey::from(wif_string);
// After (v0.4.0)
let key = PrivateKey::try_from(wif_string)?;
This library is a start at building a high-performance Bitcoin SV library in Rust.
This is a hobby project and the code is experimental. If you're looking for a complete library, check out rust-sv by Brenton Gunning. Progress on this library is determined by the needs of various other projects.
If you have anything you particularly want to see, feel free to open an issue or start a discussion.
Current Feature Status
bitcoinmodule: main structs - Tx, BlockHeader, Blockutilmodule: main structs - Amount
Dependencies
~11–23MB
~342K SLoC