ethers_hardhat 0.2.2

Ethereum wallet implementation and utility tools
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub mod cmds;
pub mod error;
pub mod utils;

pub use colorable;
pub use futures;
pub use pretty_env_logger;

#[macro_export]
macro_rules! hardhat_network {
    () => {
        $crate::cmds::HardhatNetwork::new_with(
            std::path::PathBuf::from(env!("CARGO_MANIFEST_DIR")).join("sol"),
        )
        .expect("Start hardhat network")
    };
}