pub trait RawCall<'a> {
    fn block(self, id: BlockId) -> Self;
    fn state(self, state: &'a State) -> Self;

    fn map<F>(self, f: F) -> Map<Self, F> 
    where
        Self: Sized
, { ... } }
Expand description

Provides methods for overriding parameters to the eth_call rpc method

Required Methods§

Sets the block number to execute against

Sets the state override set. Note that not all client implementations will support this as a parameter.

Provided Methods§

Maps a closure f over the result of .awaiting this call

Implementors§