frontier_template_node::eth

Trait EthCompatRuntimeApiCollection

Source
pub trait EthCompatRuntimeApiCollection<Block: BlockT>:
    ApiExt<Block>
    + ConvertTransactionRuntimeApi<Block>
    + EthereumRuntimeRPCApi<Block> { }
Expand description

A set of APIs that ethereum-compatible runtimes must implement.

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<Block, Api> EthCompatRuntimeApiCollection<Block> for Api
where Block: BlockT, Api: ApiExt<Block> + ConvertTransactionRuntimeApi<Block> + EthereumRuntimeRPCApi<Block>,