1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#[rustfmt::skip]
#[path = "sf.ethereum.type.v1.rs"]
mod sf_ethereum_type_v1;

#[rustfmt::skip]
#[path = "sf.ethereum.substreams.v1.rs"]
#[allow(dead_code)] // we added this since prost generates a FILE_DESCRIPTOR_SET const in the proto file that is not used
mod sf_ethereum_substreams_v1;

pub mod eth {
    pub mod v1 {
        pub use crate::pb::sf_ethereum_type_v1::*;
    }
    pub mod rpc {
        pub use crate::pb::sf_ethereum_substreams_v1::*;
    }
}