13 releases (7 breaking)

0.8.0 Mar 24, 2024
0.7.0 Jul 18, 2023
0.6.0 Feb 24, 2023
0.4.0 Dec 19, 2022
0.1.2 Mar 15, 2020

#1652 in Magic Beans

Download history 111/week @ 2024-01-01 98/week @ 2024-01-08 136/week @ 2024-01-15 42/week @ 2024-01-22 321/week @ 2024-01-29 119/week @ 2024-02-05 330/week @ 2024-02-12 154/week @ 2024-02-19 109/week @ 2024-02-26 77/week @ 2024-03-04 271/week @ 2024-03-11 321/week @ 2024-03-18 583/week @ 2024-03-25 202/week @ 2024-04-01 172/week @ 2024-04-08 231/week @ 2024-04-15

1,337 downloads per month
Used in 4 crates (3 directly)

MIT license

48KB
1K SLoC

rust-hwi

Rust wrapper for the Bitcoin Hardware Wallet Interface library.

Crate Info API Docs Rustc Version 1.63+ Chat on Discord

This library internally uses PyO3 to call HWI's functions. It is not a re-implementation of HWI in native Rust.

MSRV

The MSRV for this project is 1.63.0.

Prerequisites

Python 3 is required. The libraries and udev rules for each device must also be installed. Some libraries will need to be installed

For Ubuntu/Debian:

sudo apt install libusb-1.0-0-dev libudev-dev python3-dev

For Centos:

sudo yum -y install python3-devel libusbx-devel systemd-devel

For macOS:

brew install libusb

Install

  • Clone the repo
git clone https://github.com/bitcoindevkit/rust-hwi.git && cd rust-hwi
  • Create a virtualenv:
virtualenv -p python3 venv
source venv/bin/activate
  • Install all the dependencies using pip:
pip install -r requirements.txt

Usage

use bitcoin::Network;
use bitcoin::bip32::DerivationPath;
use hwi::error::Error;
use hwi::HWIClient;
use std::str::FromStr;

fn main() -> Result<(), Error> {
    let mut devices = HWIClient::enumerate()?;
    if devices.is_empty() {
        panic!("No devices found!");
    }
    let first_device = devices.remove(0)?;
    let client = HWIClient::get_client(&first_device, true, Network::Bitcoin.into())?;
    let derivation_path = DerivationPath::from_str("m/44'/1'/0'/0/0").unwrap();
    let s = client.sign_message("I love BDK wallet", &derivation_path)?;
    println!("{:?}", s.signature);
    Ok(())
}

Testing

To run the tests, you need to have a hardware wallet plugged in. If you don't have a HW for testing, you can try:

Don't use a device with funds for testing!

Either use a testing device with no funds, or use a simulator.

You can run the tests with cargo test.

Dependencies

~12MB
~172K SLoC