pub trait Config: Config + Config + Config {
    type Event: From<Event<Self>> + IsType<<Self as Config>::Event>;
    type StateRoot: Get<H256>;
}
Expand description

Configuration trait of this pallet.

Implement this type for a runtime in order to customize this pallet.

Required Associated Types

The overarching event type.

How Ethereum state root is calculated.

Implementors