chaindexing 0.1.80

Index any EVM chain and query in SQL
Documentation
1
2
3
4
5
6
use crate::{ChaindexingRepoTxnClient, Event};

pub trait HandlerContext<'a>: Send + Sync {
    fn get_event(&self) -> &Event;
    fn get_client(&self) -> &ChaindexingRepoTxnClient<'a>;
}