mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-18 05:28:40 +00:00
3d356b25ab
The existing code seems to fail with Model T 2.6.0: ``` 2023-11-25T15:52:06.035004Z TRACE trezor_client::client: Sending MessageType_SignMessage msg: SignMessage { address_n: [2147483648, 2147483648, 2147483649], message: Some([114, 101, 103, 101, 108, 32, 104, 101, 116]), coin_name: Some("Testnet"), script_type: Some(SPENDADDRESS), no_script_type: None, chunkify: None, special_fields: SpecialFields { unknown_fields: UnknownFields { fields: None }, cached_size: CachedSize { size: 0 } } } 2023-11-25T15:52:06.413333Z DEBUG trezor_client::client: Received failure: Failure { code: Some(Failure_DataError), message: Some("Forbidden key path"), special_fields: SpecialFields { unknown_fields: UnknownFields { fields: None }, cached_size: CachedSize { size: 0 } } } thread 'main' panicked at examples/sign_message.rs:10:49: called `Result::unwrap()` on an `Err` value: FailureResponse(Failure { code: Some(Failure_DataError), message: Some("Forbidden key path"), special_fields: SpecialFields { unknown_fields: UnknownFields { fields: None }, cached_size: CachedSize { size: 0 } } }) ``` Also, use `handle_interaction` from `trezor_client::client::common` to simplify the example. |
||
---|---|---|
.. | ||
build | ||
examples | ||
scripts | ||
src | ||
.clippy.toml | ||
.gitignore | ||
Cargo.lock | ||
Cargo.toml | ||
LICENSE | ||
README.md | ||
rustfmt.toml |
trezor-client
[![CI Status][actions-badge]][actions-url]
A fork of a fork of a library that provides a way to communicate with a Trezor T device from a Rust project.
Previous iterations provided implementations for Bitcoin only. This crate also provides an Ethereum interface, mainly for use in ethers-rs.
Requirements
MSRV: 1.60
See the Trezor guide on how to install and use the Trezor Suite app.
Last tested with firmware v2.4.2.
Examples / Tests
cargo run --example features
Features
bitcoin
andethereum
: client implementation and full support;cardano
,monero
,nem
,ripple
,stellar
andtezos
: only protobuf bindings.