pub trait AnchorApi<Block: BlockT, Hash, BlockNumber>: Core<Block>
where Hash: Codec, BlockNumber: Codec,
{ // Provided method fn get_anchor_by_id( &self, __runtime_api_at_param__: <Block as BlockT>::Hash, id: Hash ) -> Result<Option<AnchorData<Hash, BlockNumber>>, ApiError> { ... } }
Expand description

Runtime Api for the pallet-anchors, to be implemented by and for a specific runtime that uses that pallet.

Provided Methods§

source

fn get_anchor_by_id( &self, __runtime_api_at_param__: <Block as BlockT>::Hash, id: Hash ) -> Result<Option<AnchorData<Hash, BlockNumber>>, ApiError>

Trait Implementations§

source§

impl<Block: BlockT, Hash, BlockNumber> RuntimeApiInfo for dyn AnchorApi<Block, Hash, BlockNumber>

source§

const ID: [u8; 8] = _

The identifier of the runtime api.
source§

const VERSION: u32 = 1u32

The version of the runtime api.

Implementors§