12 lines
291 B
Rust
12 lines
291 B
Rust
//! Ethereum wallet functionality
|
|
//!
|
|
//! This module provides functionality for creating and managing Ethereum wallets.
|
|
|
|
mod implementation;
|
|
|
|
// Re-export public types and functions
|
|
pub use implementation::{
|
|
EthereumWallet,
|
|
create_ethereum_wallet,
|
|
get_current_ethereum_wallet
|
|
}; |