Remove unecessary pb module, import models from tycho-substreams instead. Integrate package directly into workspace.
10 lines
221 B
Rust
10 lines
221 B
Rust
use substreams_ethereum::pb::eth;
|
|
mod modules;
|
|
|
|
#[substreams::handlers::map]
|
|
fn map_changes(
|
|
block: eth::v2::Block,
|
|
) -> Result<tycho::BlockContractChanges, substreams::errors::Error> {
|
|
todo!("Not implemented")
|
|
}
|