Skip to main content

etopay_wallet/
lib.rs

1mod error;
2mod rebased;
3mod wallet;
4mod wallet_evm;
5mod wallet_rebased;
6
7pub mod types;
8
9pub use error::{Result, WalletError};
10pub use wallet::*;
11pub use wallet_evm::{WalletImplEvm, WalletImplEvmErc20};
12pub use wallet_rebased::WalletImplIotaRebased;
13
14/// Re-export the bip39 crate so that our users can create [`bip39::Mnemonic`]s
15pub use bip39;