Skip to content

Commit

Permalink
Add new jade device ids
Browse files Browse the repository at this point in the history
  • Loading branch information
edouardparis committed Jan 3, 2025
1 parent d597365 commit 02e40c7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ keywords = ["bitcoin"]

[package]
name = "async-hwi"
version = "0.0.24"
version = "0.0.25"
readme = "README.md"
description = "Async hardware wallet interface"
license-file.workspace = true
Expand Down
4 changes: 3 additions & 1 deletion src/jade/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -411,11 +411,13 @@ pub struct SerialTransport {
pub stream: Arc<Mutex<SerialStream>>,
}

pub const JADE_DEVICE_IDS: [(u16, u16); 4] = [
pub const JADE_DEVICE_IDS: [(u16, u16); 6] = [
(0x10c4, 0xea60),
(0x1a86, 0x55d4),
(0x0403, 0x6001),
(0x1a86, 0x7523),
(0x303a, 0x4001),
(0x303a, 0x1001),
];

impl SerialTransport {
Expand Down

0 comments on commit 02e40c7

Please sign in to comment.