foundry_wallets/
lib.rs

1//! # foundry-wallets
2//!
3//! Utilities for working with multiple signers.
4
5#![cfg_attr(not(test), warn(unused_crate_dependencies))]
6#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
7
8#[macro_use]
9extern crate tracing;
10
11pub mod error;
12pub mod multi_wallet;
13pub mod raw_wallet;
14pub mod utils;
15pub mod wallet;
16pub mod wallet_signer;
17
18pub use multi_wallet::MultiWalletOpts;
19pub use raw_wallet::RawWalletOpts;
20pub use wallet::WalletOpts;
21pub use wallet_signer::{PendingSigner, WalletSigner};