ethers_signers/ledger/
mod.rs1pub mod app;
2pub mod types;
3
4use crate::Signer;
5use app::LedgerEthereum;
6use async_trait::async_trait;
7use ethers_core::types::{
8 transaction::{eip2718::TypedTransaction, eip712::Eip712},
9 Address, Signature,
10};
11use types::LedgerError;
12
13#[cfg_attr(target_arch = "wasm32", async_trait(?Send))]
14#[cfg_attr(not(target_arch = "wasm32"), async_trait)]
15impl Signer for LedgerEthereum {
16 type Error = LedgerError;
17
18 async fn sign_message<S: Send + Sync + AsRef<[u8]>>(
20 &self,
21 message: S,
22 ) -> Result<Signature, Self::Error> {
23 self.sign_message(message).await
24 }
25
26 async fn sign_transaction(&self, message: &TypedTransaction) -> Result<Signature, Self::Error> {
28 let mut tx_with_chain = message.clone();
29 if tx_with_chain.chain_id().is_none() {
30 tx_with_chain.set_chain_id(self.chain_id);
32 }
33 self.sign_tx(&tx_with_chain).await
34 }
35
36 async fn sign_typed_data<T: Eip712 + Send + Sync>(
38 &self,
39 payload: &T,
40 ) -> Result<Signature, Self::Error> {
41 self.sign_typed_struct(payload).await
42 }
43
44 fn address(&self) -> Address {
46 self.address
47 }
48
49 fn with_chain_id<T: Into<u64>>(mut self, chain_id: T) -> Self {
50 self.chain_id = chain_id.into();
51 self
52 }
53
54 fn chain_id(&self) -> u64 {
55 self.chain_id
56 }
57}