Skip to main content

rootchain_rs/
lib.rs

1pub mod client;
2pub mod contract;
3pub mod error;
4pub mod wallet;
5
6pub use client::RpcProvider;
7pub use contract::Contract;
8pub use error::Error;
9pub use wallet::{TransactionBuilder, Wallet};
10
11pub type Result<T> = std::result::Result<T, Error>;