10 releases

0.8.7 Aug 23, 2023
0.8.3 Mar 15, 2023
0.7.0 Jul 6, 2022
0.6.0 Dec 20, 2021
0.2.2 Apr 4, 2021

#723 in Magic Beans

Download history 34709/week @ 2024-01-03 42146/week @ 2024-01-10 46228/week @ 2024-01-17 46494/week @ 2024-01-24 56667/week @ 2024-01-31 49319/week @ 2024-02-07 47237/week @ 2024-02-14 46136/week @ 2024-02-21 41185/week @ 2024-02-28 41620/week @ 2024-03-06 44807/week @ 2024-03-13 43977/week @ 2024-03-20 43037/week @ 2024-03-27 40755/week @ 2024-04-03 43077/week @ 2024-04-10 35265/week @ 2024-04-17

170,198 downloads per month
Used in 218 crates (7 directly)

MIT/Apache

83KB
2K SLoC

coins-bip32

This is an implementation of BIP32. It uses k256 and re-exports several of its traits and types.

It can be used to build wallets and applications for Bitcoin and Ethereum.

Building

$ cargo build
$ cargo build --target wasm32-unknown-unknown

Run tests (make sure to run with all feature combinations):

$ cargo test

Run bench marks

$ cargo bench
$ cargo bench --no-default-features

lib.rs:

This crate provides a basic implementation of BIP32, BIP49, and BIP84. It can be easily adapted to support other networks, using the paramaterizable encoder.

Typically, users will want to use the MainnetEncoder, DerivedXPub, DerivedXPriv types, which are available at the crate root. If key derivations are unknown, use the XPub and XPriv objects instead. These may be deserialized using a network-specific Encoder from the enc module.

Useful traits will need to be imported from the enc or model modules. We also provide a prelude module with everything you need to get started.

Warnings:

  • This crate is NOT designed to be used in adversarial environments.
  • This crate has NOT had a comprehensive security review.

Usage

use coins_bip32::prelude::*;

let digest = coins_core::Hash256::default();

let xpriv_str = "xprv9s21ZrQH143K3QTDL4LXw2F7HEK3wJUD2nW2nRk4stbPy6cq3jPPqjiChkVvvNKmPGJxWUtg6LnF5kejMRNNU3TGtRBeJgk33yuGBxrMPHi".to_owned();

let xpriv: XPriv = xpriv_str.parse().unwrap();

let child_xpriv = xpriv.derive_child(33)?;
let (sig, _recovery_id): (Signature, RecoveryId) = child_xpriv.sign_digest(digest.clone());

// Signing key types are associated with verifying key types. You can always derive a pubkey
let child_xpub = child_xpriv.verify_key();
child_xpub.verify_digest(digest.clone(), &sig)?;

MainnetEncoder::xpub_to_base58(&child_xpub)?;

Dependencies

~5MB
~86K SLoC