1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#![warn(clippy::all)]
#![allow(clippy::pedantic)]

extern crate serde;
extern crate serde_json;
#[macro_use]
extern crate serde_derive;
extern crate actix_web;
extern crate clarity;
extern crate futures;
extern crate num256;
extern crate tokio;
#[macro_use]
extern crate log;
#[cfg(test)]
#[macro_use]
extern crate assert_json_diff;

pub mod client;
mod erc20_utils;
mod event_utils;
pub mod jsonrpc;
pub mod types;