pub trait RuntimeApiCollection: BaseRuntimeApiCollection + EthCompatRuntimeApiCollection + AuraApi<Block, AuthorityId> + GrandpaApi<Block> + AccountNonceApi<Block, AccountId, Nonce> + TransactionPaymentApi<Block, Balance> { }
Expand description

A set of APIs that template runtime must implement.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<Api> RuntimeApiCollection for Api
where Api: BaseRuntimeApiCollection + EthCompatRuntimeApiCollection + AuraApi<Block, AuthorityId> + GrandpaApi<Block> + AccountNonceApi<Block, AccountId, Nonce> + TransactionPaymentApi<Block, Balance>,