Trait tp_consensus_babe::BabeApi[][src]

pub trait BabeApi<Block: BlockT>: Core<Block> {
    fn configuration(
        &self,
        __runtime_api_at_param__: &BlockId<Block>
    ) -> Result<BabeGenesisConfiguration, Self::Error> { ... }
fn configuration_with_context(
        &self,
        __runtime_api_at_param__: &BlockId<Block>,
        context: ExecutionContext
    ) -> Result<BabeGenesisConfiguration, Self::Error> { ... }
fn configuration_before_version_2(
        &self,
        __runtime_api_at_param__: &BlockId<Block>
    ) -> Result<BabeGenesisConfigurationV1, Self::Error> { ... }
fn configuration_before_version_2_with_context(
        &self,
        __runtime_api_at_param__: &BlockId<Block>,
        context: ExecutionContext
    ) -> Result<BabeGenesisConfigurationV1, Self::Error> { ... }
fn current_epoch_start(
        &self,
        __runtime_api_at_param__: &BlockId<Block>
    ) -> Result<Slot, Self::Error> { ... }
fn current_epoch_start_with_context(
        &self,
        __runtime_api_at_param__: &BlockId<Block>,
        context: ExecutionContext
    ) -> Result<Slot, Self::Error> { ... }
fn current_epoch(
        &self,
        __runtime_api_at_param__: &BlockId<Block>
    ) -> Result<Epoch, Self::Error> { ... }
fn current_epoch_with_context(
        &self,
        __runtime_api_at_param__: &BlockId<Block>,
        context: ExecutionContext
    ) -> Result<Epoch, Self::Error> { ... }
fn next_epoch(
        &self,
        __runtime_api_at_param__: &BlockId<Block>
    ) -> Result<Epoch, Self::Error> { ... }
fn next_epoch_with_context(
        &self,
        __runtime_api_at_param__: &BlockId<Block>,
        context: ExecutionContext
    ) -> Result<Epoch, Self::Error> { ... }
fn generate_key_ownership_proof(
        &self,
        __runtime_api_at_param__: &BlockId<Block>,
        slot: Slot,
        authority_id: AuthorityId
    ) -> Result<Option<OpaqueKeyOwnershipProof>, Self::Error> { ... }
fn generate_key_ownership_proof_with_context(
        &self,
        __runtime_api_at_param__: &BlockId<Block>,
        context: ExecutionContext,
        slot: Slot,
        authority_id: AuthorityId
    ) -> Result<Option<OpaqueKeyOwnershipProof>, Self::Error> { ... }
fn submit_report_equivocation_unsigned_extrinsic(
        &self,
        __runtime_api_at_param__: &BlockId<Block>,
        equivocation_proof: EquivocationProof<Block::Header>,
        key_owner_proof: OpaqueKeyOwnershipProof
    ) -> Result<Option<()>, Self::Error> { ... }
fn submit_report_equivocation_unsigned_extrinsic_with_context(
        &self,
        __runtime_api_at_param__: &BlockId<Block>,
        context: ExecutionContext,
        equivocation_proof: EquivocationProof<Block::Header>,
        key_owner_proof: OpaqueKeyOwnershipProof
    ) -> Result<Option<()>, Self::Error> { ... } }

API necessary for block authorship with BABE.

Provided methods

fn configuration(
    &self,
    __runtime_api_at_param__: &BlockId<Block>
) -> Result<BabeGenesisConfiguration, Self::Error>
[src]

Return the genesis configuration for BABE. The configuration is only read on genesis.

fn configuration_with_context(
    &self,
    __runtime_api_at_param__: &BlockId<Block>,
    context: ExecutionContext
) -> Result<BabeGenesisConfiguration, Self::Error>
[src]

Return the genesis configuration for BABE. The configuration is only read on genesis.

fn configuration_before_version_2(
    &self,
    __runtime_api_at_param__: &BlockId<Block>
) -> Result<BabeGenesisConfigurationV1, Self::Error>
[src]

👎 Deprecated

Return the configuration for BABE. Version 1.

fn configuration_before_version_2_with_context(
    &self,
    __runtime_api_at_param__: &BlockId<Block>,
    context: ExecutionContext
) -> Result<BabeGenesisConfigurationV1, Self::Error>
[src]

👎 Deprecated

Return the configuration for BABE. Version 1.

fn current_epoch_start(
    &self,
    __runtime_api_at_param__: &BlockId<Block>
) -> Result<Slot, Self::Error>
[src]

Returns the slot that started the current epoch.

fn current_epoch_start_with_context(
    &self,
    __runtime_api_at_param__: &BlockId<Block>,
    context: ExecutionContext
) -> Result<Slot, Self::Error>
[src]

Returns the slot that started the current epoch.

fn current_epoch(
    &self,
    __runtime_api_at_param__: &BlockId<Block>
) -> Result<Epoch, Self::Error>
[src]

Returns information regarding the current epoch.

fn current_epoch_with_context(
    &self,
    __runtime_api_at_param__: &BlockId<Block>,
    context: ExecutionContext
) -> Result<Epoch, Self::Error>
[src]

Returns information regarding the current epoch.

fn next_epoch(
    &self,
    __runtime_api_at_param__: &BlockId<Block>
) -> Result<Epoch, Self::Error>
[src]

Returns information regarding the next epoch (which was already previously announced).

fn next_epoch_with_context(
    &self,
    __runtime_api_at_param__: &BlockId<Block>,
    context: ExecutionContext
) -> Result<Epoch, Self::Error>
[src]

Returns information regarding the next epoch (which was already previously announced).

fn generate_key_ownership_proof(
    &self,
    __runtime_api_at_param__: &BlockId<Block>,
    slot: Slot,
    authority_id: AuthorityId
) -> Result<Option<OpaqueKeyOwnershipProof>, Self::Error>
[src]

Generates a proof of key ownership for the given authority in the current epoch. An example usage of this module is coupled with the session historical module to prove that a given authority key is tied to a given staking identity during a specific session. Proofs of key ownership are necessary for submitting equivocation reports. NOTE: even though the API takes a slot as parameter the current implementations ignores this parameter and instead relies on this method being called at the correct block height, i.e. any point at which the epoch for the given slot is live on-chain. Future implementations will instead use indexed data through an offchain worker, not requiring older states to be available.

fn generate_key_ownership_proof_with_context(
    &self,
    __runtime_api_at_param__: &BlockId<Block>,
    context: ExecutionContext,
    slot: Slot,
    authority_id: AuthorityId
) -> Result<Option<OpaqueKeyOwnershipProof>, Self::Error>
[src]

Generates a proof of key ownership for the given authority in the current epoch. An example usage of this module is coupled with the session historical module to prove that a given authority key is tied to a given staking identity during a specific session. Proofs of key ownership are necessary for submitting equivocation reports. NOTE: even though the API takes a slot as parameter the current implementations ignores this parameter and instead relies on this method being called at the correct block height, i.e. any point at which the epoch for the given slot is live on-chain. Future implementations will instead use indexed data through an offchain worker, not requiring older states to be available.

fn submit_report_equivocation_unsigned_extrinsic(
    &self,
    __runtime_api_at_param__: &BlockId<Block>,
    equivocation_proof: EquivocationProof<Block::Header>,
    key_owner_proof: OpaqueKeyOwnershipProof
) -> Result<Option<()>, Self::Error>
[src]

Submits an unsigned extrinsic to report an equivocation. The caller must provide the equivocation proof and a key ownership proof (should be obtained using generate_key_ownership_proof). The extrinsic will be unsigned and should only be accepted for local authorship (not to be broadcast to the network). This method returns None when creation of the extrinsic fails, e.g. if equivocation reporting is disabled for the given runtime (i.e. this method is hardcoded to return None). Only useful in an offchain context.

fn submit_report_equivocation_unsigned_extrinsic_with_context(
    &self,
    __runtime_api_at_param__: &BlockId<Block>,
    context: ExecutionContext,
    equivocation_proof: EquivocationProof<Block::Header>,
    key_owner_proof: OpaqueKeyOwnershipProof
) -> Result<Option<()>, Self::Error>
[src]

Submits an unsigned extrinsic to report an equivocation. The caller must provide the equivocation proof and a key ownership proof (should be obtained using generate_key_ownership_proof). The extrinsic will be unsigned and should only be accepted for local authorship (not to be broadcast to the network). This method returns None when creation of the extrinsic fails, e.g. if equivocation reporting is disabled for the given runtime (i.e. this method is hardcoded to return None). Only useful in an offchain context.

Loading content...

Trait Implementations

impl<Block: BlockT, __Sr_Api_Error__> RuntimeApiInfo for dyn BabeApi<Block, Error = __Sr_Api_Error__>[src]

Implementors

Loading content...