refactor(client): redesign of wallet handle
Some checks failed
ci/woodpecker/pr/server-audit Pipeline was successful
ci/woodpecker/pr/server-lint Pipeline was successful
ci/woodpecker/pr/server-vet Pipeline failed
ci/woodpecker/pr/server-test Pipeline was successful

This commit is contained in:
hdbg
2026-03-22 12:00:33 +01:00
parent 1f07fd6a98
commit eb37ee0a0c
7 changed files with 177 additions and 159 deletions

View File

@@ -1,8 +1,12 @@
mod auth;
mod signer;
mod client;
mod storage;
mod transport;
pub mod wallets;
pub use auth::ConnectError;
pub use signer::ArbiterSigner;
pub use client::{ArbiterClient, ClientError};
pub use storage::{FileSigningKeyStorage, SigningKeyStorage, StorageError};
#[cfg(feature = "evm")]
pub use wallets::evm::ArbiterEvmWallet;