| Crates.io | bitcoinsv |
| lib.rs | bitcoinsv |
| version | 0.4.0 |
| created_at | 2024-01-01 20:38:07.04172+00 |
| updated_at | 2025-07-15 22:56:04.33939+00 |
| description | Low-level Bitcoin SV library, focused on infrastructure. |
| homepage | https://github.com/Danconnolly/rust-bitcoinsv |
| repository | https://github.com/Danconnolly/rust-bitcoinsv |
| max_upload_size | |
| id | 1085540 |
| size | 313,264 |
NOTE: This library is incomplete and undergoing extensive changes at the moment.
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.
bitcoin module: main structs - Tx, BlockHeader, Block
util module: main structs - Amount