ethereum-block-core 0.2.0

Core block and transaction types for Ethereum.
Documentation
#![cfg_attr(not(feature = "std"), no_std)]
#![cfg_attr(not(feature = "std"), feature(alloc))]

#[cfg(not(feature = "std"))]
extern crate alloc;

extern crate sha3;
extern crate rlp;
extern crate bigint;

mod account;
mod log;
mod transaction;

pub use transaction::*;
pub use account::Account;
pub use log::Log;