darwinia-shadow 0.2.5

The shadow service for relayers and verify workers to retrieve header data and generate proof.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Ethereum API
mod count;
mod ffi;
mod header;
mod proposal;
mod receipt;

pub use self::{
    count::handle as count,
    ffi::{epoch, import},
    header::handle as header,
    proposal::{handle as proposal, ProposalReq},
    receipt::handle as receipt,
};