Module polkadot_sdk_frame::runtime::apis
source · Expand description
Types and traits for runtimes that implement runtime APIs.
A testing runtime should not need this.
A non-testing runtime should have this enabled, as such:
use polkadot_sdk_frame::runtime::{prelude::*, apis::{*,}};
Re-exports§
pub use sp_api;
Modules§
- Aura (Authority-Round) digests
Macros§
Structs§
- Auxiliary wrapper that holds an api instance and binds it to the given lifetime.
- Parameters for
CallApiAt::call_api_at
. - Proof of voter misbehavior on a given set id. Misbehavior/equivocation in GRANDPA happens when a voter votes on the same round (either at prevote or precommit stage) for different blocks. Proving is achieved by collecting the signed messages of conflicting votes.
- A GRANDPA justification for block finality, it includes a commit message and an ancestry proof including all headers routing all precommit target blocks to the commit target block. Due to the current voting strategy the precommit targets should be the same as the commit target, since honest voters don’t vote past authority set change blocks.
- An identifier for a type of cryptographic key.
- A scheduled change of authority set.
- Unit type wrapper that represents a slot.
- A slot duration defined in milliseconds.
- A proof that some set of key-value pairs are included in the storage trie. The proof contains the storage values so that the partial storage backend can be reconstructed by a verifier that does not already have access to the key-value pairs.
Enums§
- An error describing which API call failed.
- The context in which a call is done.
- Wrapper object for GRANDPA equivocation proofs, useful for unifying prevote and precommit equivocations under a common type.
- Describes on what should happen with a storage transaction.
Constants§
- The
ConsensusEngineId
of AuRa. - The log target to be used by client code.
- The default
development
preset used to communicate with the runtime viaGenesisBuilder
interface. - The
ConsensusEngineId
of GRANDPA. - Key type for GRANDPA module.
- The default
local_testnet
preset used to communicate with the runtime viaGenesisBuilder
interface. - Maximum nesting level for extrinsics.
- The number of bytes required to encode a
RuntimeApiInfo
. - The log target to be used by runtime code.
- Persistent storage prefix used by the Offchain Worker API when creating a DB key.
Traits§
- The API to query account nonce.
- Extends the runtime api implementation with some common functionality.
- API necessary for block authorship with aura.
- The
BlockBuilder
api trait that provides the required functionality for building a block. - Something that can call into the an api at a given block.
- Something that can be constructed to a runtime api.
- The
Core
runtime api that every Substrate runtime needs to implement. - API to interact with
RuntimeGenesisConfig
for the runtime - APIs for integrating the GRANDPA finality gadget into runtimes. This should be implemented on the runtime side.
- The
Metadata
api trait that returns metadata for the runtime. - The offchain worker api.
- Something that provides a runtime api.
- Something that provides information about a runtime api.
- Session keys runtime api.
- The
TaggedTransactionQueue
api trait for interfering with the transaction queue.
Functions§
- Verifies the equivocation proof by making sure that both votes target different blocks and that its signatures are valid.
- Check a message signature by encoding the message as a localized payload and verifying the provided signature using the expected authority id.
- Check a message signature by encoding the message as a localized payload and verifying the provided signature using the expected authority id. The encoding necessary to verify the signature will be done using the given buffer, the original content of the buffer will be cleared.
- Deserialize the runtime API info serialized by
serialize_runtime_api_info
. - Init the
RuntimeLogger
. - Encode round message localized to a given round and set id.
- Encode round message localized to a given round and set id using the given buffer. The given buffer will be cleared and the resulting encoded payload will always be written to the start of the buffer.
- Crude and simple way to serialize the
RuntimeApiInfo
into a bunch of bytes. - Localizes the message to the given set and round and signs the payload.
Type Aliases§
- Identity of a Grandpa authority.
- A list of Grandpa authorities with associated weights.
- The grandpa crypto scheme defined via the keypair type.
- Signature for a Grandpa authority.
- The weight of an authority.
- A catch up message for this chain’s block type.
- A commit message for this chain’s block type.
- A compact commit message for this chain’s block type.
- A GRANDPA message for a substrate chain.
- An opaque type used to represent the key ownership proof at the runtime API boundary. The inner value is an encoded representation of the actual key ownership proof which will be parameterized when defining the runtime. At the runtime API boundary this type is unknown and as such we keep this opaque representation, implementors of the runtime API will have to make sure that all usages of
OpaqueKeyOwnershipProof
refer to the same type. - A precommit message for this chain’s block type.
- The type representing preset ID.
- A prevote message for this chain’s block type.
- A primary propose message for this chain’s block type.
- A type that records all accessed trie nodes and generates a proof out of it.
- The result type alias, used in build methods.
Err
contains formatted error message. - The round indicator.
- The monotonic identifier of a GRANDPA set of authorities.
- A signed message.