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
//! Ethereum types
mod confirmation;
mod ethash_proof;
mod header;
mod mmr_proof;

pub use self::{
    confirmation::get as confirmation,
    ethash_proof::{EthashProof, EthashProofJson},
    header::{EthHeader, EthHeaderJson, EthHeaderRPCResp},
    mmr_proof::{HeaderStuffs, MMRProof, MMRProofJson},
};