referrerpolicy=no-referrer-when-downgrade
frame_support::traits

Trait KeyOwnerProofSystem

Source
pub trait KeyOwnerProofSystem<Key> {
    type Proof: Codec;
    type IdentificationTuple: Codec;

    // Required methods
    fn prove(key: Key) -> Option<Self::Proof>;
    fn check_proof(
        key: Key,
        proof: Self::Proof,
    ) -> Option<Self::IdentificationTuple>;
}
Expand description

Something which can compute and check proofs of a historical key owner and return full identification data of that key owner.

Required Associated Types§

Source

type Proof: Codec

The proof of membership itself.

Source

type IdentificationTuple: Codec

The full identification of a key owner and the stash account.

Required Methods§

Source

fn prove(key: Key) -> Option<Self::Proof>

Prove membership of a key owner in the current block-state.

This should typically only be called off-chain, since it may be computationally heavy.

Returns Some iff the key owner referred to by the given key is a member of the current set.

Source

fn check_proof( key: Key, proof: Self::Proof, ) -> Option<Self::IdentificationTuple>

Check a proof of membership on-chain. Return Some iff the proof is valid and recent enough to check.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl<Key> KeyOwnerProofSystem<Key> for ()

Source§

type Proof = Void

Source§

type IdentificationTuple = Void

Source§

fn prove(_key: Key) -> Option<Self::Proof>

Source§

fn check_proof( _key: Key, _proof: Self::Proof, ) -> Option<Self::IdentificationTuple>

Implementors§

impl<T: Config, D: AsRef<[u8]>> KeyOwnerProofSystem<(KeyTypeId, D)> for Pallet<T>