package tezos-protocol-016-PtMumbai
Install
dune-project
Dependency
Authors
Maintainers
Sources
sha256=ad9e08819871c75ba6f4530b125f7d157799398e4d77a1e6bfea9d91ff37ff55
sha512=c5dc4d40cc09bc6980fbbdb5c2e105bf4252cf9cfcb2b49660b0ebe4dc789f6709ec3b3bf2f87d81580d3eed9521eeb1c960f24d9b14eb0285aaba1f84d10a9b
doc/tezos-protocol-016-PtMumbai.raw/Tezos_raw_protocol_016_PtMumbai/Delegate_consensus_key/index.html
Module Tezos_raw_protocol_016_PtMumbai.Delegate_consensus_keySource
Management of a delegate's consensus key, the one used to sign blocks and consensus operations. It is responsible for maintaining the tables Storage.Consensus_keys, Storage.Contract.Consensus_key, and Storage.Contract.Pending_consensus_keys.
type Tezos_protocol_environment_016_PtMumbai.Error_monad.error += | Invalid_consensus_key_update_noop of Cycle_repr.t| Invalid_consensus_key_update_active| Invalid_consensus_key_update_tz4 of Tezos_protocol_environment_016_PtMumbai.Bls.Public_key.t
type pk = Raw_context.consensus_pk = {delegate : Tezos_protocol_environment_016_PtMumbai.Signature.Public_key_hash.t;consensus_pk : Tezos_protocol_environment_016_PtMumbai.Signature.Public_key.t;consensus_pkh : Tezos_protocol_environment_016_PtMumbai.Signature.Public_key_hash.t;
}The public key of a consensus key and the associated delegate.
type t = {delegate : Tezos_protocol_environment_016_PtMumbai.Signature.Public_key_hash.t;consensus_pkh : Tezos_protocol_environment_016_PtMumbai.Signature.Public_key_hash.t;
}The public key hash of a consensus key and the associated delegate.
val check_not_tz4 :
Tezos_protocol_environment_016_PtMumbai.Signature.public_key ->
unit Tezos_protocol_environment_016_PtMumbai.Error_monad.tzresultcheck_not_tz4 pk checks that pk is not a BLS address.
val init :
Raw_context.t ->
Tezos_protocol_environment_016_PtMumbai.Signature.Public_key_hash.t ->
Tezos_protocol_environment_016_PtMumbai.Signature.Public_key.t ->
Raw_context.t Tezos_protocol_environment_016_PtMumbai.Error_monad.tzresult
Tezos_protocol_environment_016_PtMumbai.Lwt.tInitialize the consensus key when registering a delegate.
val active_pubkey :
Raw_context.t ->
Tezos_protocol_environment_016_PtMumbai.Signature.Public_key_hash.t ->
pk Tezos_protocol_environment_016_PtMumbai.Error_monad.tzresult
Tezos_protocol_environment_016_PtMumbai.Lwt.tReturns the active consensus key for the current cycle.
val active_key :
Raw_context.t ->
Tezos_protocol_environment_016_PtMumbai.Signature.Public_key_hash.t ->
t Tezos_protocol_environment_016_PtMumbai.Error_monad.tzresult
Tezos_protocol_environment_016_PtMumbai.Lwt.tReturns the active consensus key for the current cycle.
val active_pubkey_for_cycle :
Raw_context.t ->
Tezos_protocol_environment_016_PtMumbai.Signature.Public_key_hash.t ->
Cycle_repr.t ->
pk Tezos_protocol_environment_016_PtMumbai.Error_monad.tzresult
Tezos_protocol_environment_016_PtMumbai.Lwt.tReturns the active consensus key for the given cycle.
val pending_updates :
Raw_context.t ->
Tezos_protocol_environment_016_PtMumbai.Signature.Public_key_hash.t ->
(Cycle_repr.t
* Tezos_protocol_environment_016_PtMumbai.Signature.Public_key_hash.t)
list
Tezos_protocol_environment_016_PtMumbai.Error_monad.tzresult
Tezos_protocol_environment_016_PtMumbai.Lwt.tReturns the list of pending consensus-key updates in upcoming cycles.
val register_update :
Raw_context.t ->
Tezos_protocol_environment_016_PtMumbai.Signature.Public_key_hash.t ->
Tezos_protocol_environment_016_PtMumbai.Signature.Public_key.t ->
Raw_context.t Tezos_protocol_environment_016_PtMumbai.Error_monad.tzresult
Tezos_protocol_environment_016_PtMumbai.Lwt.tRegister a consensus-key update.
val activate :
Raw_context.t ->
new_cycle:Cycle_repr.t ->
Raw_context.t Tezos_protocol_environment_016_PtMumbai.Error_monad.tzresult
Tezos_protocol_environment_016_PtMumbai.Lwt.tActivate consensus keys at the beginning of cycle new_cycle. This function iterates on all registered delegates.