Trait RethApiClient

Source
pub trait RethApiClient: ClientT {
    // Provided method
    fn reth_get_balance_changes_in_block(
        &self,
        block_id: BlockId,
    ) -> impl Future<Output = Result<HashMap<Address, Uint<256, 4>>, Error>> + Send { ... }
}
Expand description

Client implementation for the RethApi RPC API.

Provided Methods§

Source

fn reth_get_balance_changes_in_block( &self, block_id: BlockId, ) -> impl Future<Output = Result<HashMap<Address, Uint<256, 4>>, Error>> + Send

Returns all ETH balance changes in a block

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<TypeJsonRpseeInternal> RethApiClient for TypeJsonRpseeInternal
where TypeJsonRpseeInternal: ClientT,