reweb3 0.2.4

Client-side protocol(Web3) for ethereum and other EVM-based chains rewritten in rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub use reweb3_macros;

#[macro_export]
macro_rules! hardhat_artifact {
    ($abi_path:tt) => {
        $crate::macros::reweb3_macros::contract!($abi_path);
    };
}

#[macro_export]
macro_rules! contract {
    ($ident: ident, $abi_path: expr) => {
        $crate::macros::reweb3_macros::contract!(stringify!($ident), $abi_path);
    };
}