bitcoinsv

Crates.iobitcoinsv
lib.rsbitcoinsv
version0.4.0
created_at2024-01-01 20:38:07.04172+00
updated_at2025-07-15 22:56:04.33939+00
descriptionLow-level Bitcoin SV library, focused on infrastructure.
homepagehttps://github.com/Danconnolly/rust-bitcoinsv
repositoryhttps://github.com/Danconnolly/rust-bitcoinsv
max_upload_size
id1085540
size313,264
Daniel Connolly (Danconnolly)

documentation

https://docs.rs/bitcoinsv/latest/bitcoinsv/

README

rust-bitcoinsv

Test Status dependency status

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

  • bitcoin module: main structs - Tx, BlockHeader, Block

  • util module: main structs - Amount

Commit count: 294

cargo fmt