Trait fc_rpc::EthConfig

source ·
pub trait EthConfig<B: BlockT, C>:
    Send
    + Sync
    + 'static {
    type EstimateGasAdapter: EstimateGasAdapter + Send + Sync;
    type RuntimeStorageOverride: RuntimeStorageOverride<B, C>;
}

Required Associated Types§

Implementations on Foreign Types§

source§

impl<B: BlockT, C> EthConfig<B, C> for ()

Implementors§

impl<B, C, BE> EthConfig<B, C> for DefaultEthConfig<C, BE>
where B: BlockT, C: StorageProvider<B, BE> + Sync + Send + 'static, BE: Backend<B> + 'static,