1#![doc = include_str!("../README.md")]
2#![deny(unsafe_code, rustdoc::broken_intra_doc_links)]
3#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
4
5mod wallet;
6pub use wallet::{MnemonicBuilder, Wallet, WalletError};
7
8pub use coins_bip39;
10
11pub type LocalWallet = Wallet<ethers_core::k256::ecdsa::SigningKey>;
13
14#[cfg(all(feature = "yubihsm", not(target_arch = "wasm32")))]
15pub type YubiWallet = Wallet<yubihsm::ecdsa::Signer<ethers_core::k256::Secp256k1>>;
17
18#[cfg(all(feature = "ledger", not(target_arch = "wasm32")))]
19mod ledger;
20#[cfg(all(feature = "ledger", not(target_arch = "wasm32")))]
21pub use ledger::{
22 app::LedgerEthereum as Ledger,
23 types::{DerivationType as HDPath, LedgerError},
24};
25
26#[cfg(all(feature = "trezor", not(target_arch = "wasm32")))]
27mod trezor;
28#[cfg(all(feature = "trezor", not(target_arch = "wasm32")))]
29pub use trezor::{
30 app::TrezorEthereum as Trezor,
31 types::{DerivationType as TrezorHDPath, TrezorError},
32};
33
34#[cfg(all(feature = "yubihsm", not(target_arch = "wasm32")))]
35pub use yubihsm;
36
37#[cfg(feature = "aws")]
38mod aws;
39#[cfg(feature = "aws")]
40pub use aws::{AwsSigner, AwsSignerError};
41
42use async_trait::async_trait;
43use ethers_core::types::{
44 transaction::{eip2718::TypedTransaction, eip712::Eip712},
45 Address, Signature,
46};
47use std::error::Error;
48
49pub fn to_eip155_v<T: Into<u8>>(recovery_id: T, chain_id: u64) -> u64 {
51 (recovery_id.into() as u64) + 35 + chain_id * 2
52}
53
54#[cfg_attr(target_arch = "wasm32", async_trait(?Send))]
58#[cfg_attr(not(target_arch = "wasm32"), async_trait)]
59pub trait Signer: std::fmt::Debug + Send + Sync {
60 type Error: Error + Send + Sync;
61 async fn sign_message<S: Send + Sync + AsRef<[u8]>>(
63 &self,
64 message: S,
65 ) -> Result<Signature, Self::Error>;
66
67 async fn sign_transaction(&self, message: &TypedTransaction) -> Result<Signature, Self::Error>;
69
70 async fn sign_typed_data<T: Eip712 + Send + Sync>(
73 &self,
74 payload: &T,
75 ) -> Result<Signature, Self::Error>;
76
77 fn address(&self) -> Address;
79
80 fn chain_id(&self) -> u64;
82
83 #[must_use]
85 fn with_chain_id<T: Into<u64>>(self, chain_id: T) -> Self;
86}