Type Alias alloy_contract::SolCallBuilder

source ·
pub type SolCallBuilder<T, P, C, N = Ethereum> = CallBuilder<T, P, PhantomData<C>, N>;
Expand description

CallBuilder using a SolCall type as the call decoder.

Aliased Type§

struct SolCallBuilder<T, P, C, N = Ethereum> {
    pub provider: P,
    /* private fields */
}

Fields§

§provider: P

The provider.

Implementations§

source§

impl<T: Transport + Clone, P: Provider<T, N>, C: SolCall, N: Network> SolCallBuilder<T, P, C, N>

source

pub fn clear_decoder(self) -> RawCallBuilder<T, P, N>

Clears the decoder, returning a raw call builder.