solidity-bindgen 0.1.0

Generates bindings for solidity contracts. Uses web3 under the hood.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/// A module for implementation that needs to be exposed to macros
#[doc(hidden)]
pub mod internal;

mod context;
mod providers;
mod secrets;
mod web3_provider;

pub use secrets::SafeSecretKey;

pub use providers::{CallProvider, SendProvider};
pub use web3_provider::Web3Provider;

// Re-export the macros
pub use solidity_bindgen_macros::*;

pub use context::{Context, Web3Context};