web30 0.22.0

Async endian safe web3 library
Documentation
#![warn(clippy::all)]
#![allow(clippy::pedantic)]

#[macro_use]
extern crate serde_derive;
#[macro_use]
extern crate log;
#[macro_use]
extern crate lazy_static;

pub mod amm;
pub mod client;
mod erc20_utils;
mod erc721_utils;
pub mod eth_wrapping;
mod event_utils;
pub mod gas_estimator;
pub mod jsonrpc;
mod mem;
pub mod types;

pub use event_utils::address_to_event;