1#[derive(Debug, thiserror::Error)] 2pub enum Error { 3 #[error(transparent)] 4 UnspecifiedRingError(#[from] ring::error::Unspecified), 5 #[error(transparent)] 6 WalletError(#[from] ethers_signers::WalletError), 7}