pub trait Runtime<C: Context, Da: DaSpec>: DispatchCall<Context = C> + Genesis<Context = C> + TxHooks<Context = C> + SlotHooks<Da, Context = C> + ApplyBlobHooks<Da::BlobTransaction, Context = C, BlobResult = SequencerOutcome<<<Da as DaSpec>::BlobTransaction as BlobReaderTrait>::Address>> + BlobSelector<Da, Context = C> { }
Expand description

This trait has to be implemented by a runtime in order to be used in AppTemplate.

Implementors§