1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
//! Externs library to interact with Ethereum-like network

#![cfg_attr(not(feature="std"), no_std)]

extern crate pwasm_std;
extern crate parity_hash as hash;
extern crate bigint;

mod ext;
mod storage;

pub use ext::*;
pub use storage::*;