All chains
    Preparing search index...

    Type Alias set_keys

    set_keys: TxDescriptor<
        {
            keys: {
                authority_discovery: FixedSizeBinary<32>;
                babe: FixedSizeBinary<32>;
                beefy: FixedSizeBinary<33>;
                grandpa: FixedSizeBinary<32>;
                para_assignment: FixedSizeBinary<32>;
                para_validator: FixedSizeBinary<32>;
            };
            proof: Binary;
        },
    >

    Sets the session key(s) of the function caller to keys.

    Allows an account to set its session key prior to becoming a validator. This doesn't take effect until the next session.

    • origin: The dispatch origin of this function must be signed.
    • keys: The new session keys to set. These are the public keys of all sessions keys setup in the runtime.
    • proof: The proof that origin has access to the private keys of keys. See impl_opaque_keys for more information about the proof format.