package tezos-protocol-alpha
Install
dune-project
Dependency
Authors
Maintainers
Sources
sha256=43723d096307603703a1a89ed1b2eb202b365f5e7824b96b0cbf813b343a6cf7
sha512=b2a637f2e965000d3d49ad85277ca24d6cb07a1a7cf2bc69d296d8b03ad78c3eaa8e21e94b9162e62c2e11649cd03bc845b2a3dafe623b91065df69d47dc8e4f
doc/tezos-protocol-alpha.raw/Tezos_raw_protocol_alpha/Vote_storage/index.html
Module Tezos_raw_protocol_alpha.Vote_storageSource
Manages all the voting related storage in Storage.Vote.
val get_delegate_proposal_count :
Raw_context.t ->
Tezos_protocol_environment_alpha.Signature.public_key_hash ->
int Tezos_protocol_environment_alpha.Error_monad.tzresult
Tezos_protocol_environment_alpha.Lwt.tget_delegate_proposal_count ctxt proposer returns the number of proposals already made by proposer in the current voting cycle.
This number of proposals, aka count, has its own storage bucket.
val set_delegate_proposal_count :
Raw_context.t ->
Tezos_protocol_environment_alpha.Signature.public_key_hash ->
int ->
Raw_context.t Tezos_protocol_environment_alpha.Lwt.tset_delegate_proposal_count ctxt proposer count sets proposer's number of submitted proposals to count.
More precisely, the relevant storage bucket is allocated and initialized to count if it didn't exist; otherwise it is simply updated.
val has_proposed :
Raw_context.t ->
Tezos_protocol_environment_alpha.Signature.public_key_hash ->
Tezos_protocol_environment_alpha.Protocol_hash.t ->
bool Tezos_protocol_environment_alpha.Lwt.thas_proposed ctxt proposer proposal indicates whether the proposer has already proposed the proposal.
val add_proposal :
Raw_context.t ->
Tezos_protocol_environment_alpha.Signature.public_key_hash ->
Tezos_protocol_environment_alpha.Protocol_hash.t ->
Raw_context.t Tezos_protocol_environment_alpha.Lwt.tadd_proposal ctxt proposer proposal records the submission of proposal by proposer.
val get_proposals :
Raw_context.t ->
int64 Tezos_protocol_environment_alpha.Protocol_hash.Map.t
Tezos_protocol_environment_alpha.Error_monad.tzresult
Tezos_protocol_environment_alpha.Lwt.tComputes for each proposal how many delegates proposed it.
Counts of the votes
Encoding for ballots.
Pretty printer for ballots.
val has_recorded_ballot :
Raw_context.t ->
Tezos_protocol_environment_alpha.Signature.Public_key_hash.t ->
bool Tezos_protocol_environment_alpha.Lwt.tval record_ballot :
Raw_context.t ->
Tezos_protocol_environment_alpha.Signature.Public_key_hash.t ->
Vote_repr.ballot ->
Raw_context.t Tezos_protocol_environment_alpha.Error_monad.tzresult
Tezos_protocol_environment_alpha.Lwt.tRecords a vote for a delegate, returns a Storage_errorExisting_key if the vote was already registered
val get_ballots :
Raw_context.t ->
ballots Tezos_protocol_environment_alpha.Error_monad.tzresult
Tezos_protocol_environment_alpha.Lwt.tComputes the sum of the current ballots weighted by stake.
val get_ballot_list :
Raw_context.t ->
(Tezos_protocol_environment_alpha.Signature.Public_key_hash.t
* Vote_repr.ballot)
list
Tezos_protocol_environment_alpha.Lwt.tval listings_encoding :
(Tezos_protocol_environment_alpha.Signature.Public_key_hash.t * int64) list
Tezos_protocol_environment_alpha.Data_encoding.tval update_listings :
Raw_context.t ->
Raw_context.t Tezos_protocol_environment_alpha.Error_monad.tzresult
Tezos_protocol_environment_alpha.Lwt.tPopulates !Storage.Vote.Listings using the currently existing staking power and sets `Voting_power_in_listings`. Inactive delegates or delegates without the minimal required stake are not included in the listings.
val in_listings :
Raw_context.t ->
Tezos_protocol_environment_alpha.Signature.Public_key_hash.t ->
bool Tezos_protocol_environment_alpha.Lwt.tVerifies the presence of a delegate in the listing.
val get_listings :
Raw_context.t ->
(Tezos_protocol_environment_alpha.Signature.Public_key_hash.t * int64) list
Tezos_protocol_environment_alpha.Lwt.ttype delegate_info = {voting_power : Tezos_protocol_environment_alpha.Int64.t option;current_ballot : Vote_repr.ballot option;current_proposals : Tezos_protocol_environment_alpha.Protocol_hash.t list;remaining_proposals : int;
}val pp_delegate_info :
Tezos_protocol_environment_alpha.Format.formatter ->
delegate_info ->
unitval get_voting_power_free :
Raw_context.t ->
Tezos_protocol_environment_alpha.Signature.public_key_hash ->
int64 Tezos_protocol_environment_alpha.Error_monad.tzresult
Tezos_protocol_environment_alpha.Lwt.tval get_total_voting_power_free :
Raw_context.t ->
int64 Tezos_protocol_environment_alpha.Error_monad.tzresult
Tezos_protocol_environment_alpha.Lwt.tReturns the sum of all voting power in the listings, without accounting for gas cost.
val get_total_voting_power :
Raw_context.t ->
(Raw_context.t * int64) Tezos_protocol_environment_alpha.Error_monad.tzresult
Tezos_protocol_environment_alpha.Lwt.tReturns the sum of all voting power in the listings.
val get_current_quorum :
Raw_context.t ->
int32 Tezos_protocol_environment_alpha.Error_monad.tzresult
Tezos_protocol_environment_alpha.Lwt.tval get_participation_ema :
Raw_context.t ->
int32 Tezos_protocol_environment_alpha.Error_monad.tzresult
Tezos_protocol_environment_alpha.Lwt.tval set_participation_ema :
Raw_context.t ->
int32 ->
Raw_context.t Tezos_protocol_environment_alpha.Error_monad.tzresult
Tezos_protocol_environment_alpha.Lwt.tIndicates whether there is a current proposal in the storage.
val get_current_proposal :
Raw_context.t ->
Tezos_protocol_environment_alpha.Protocol_hash.t
Tezos_protocol_environment_alpha.Error_monad.tzresult
Tezos_protocol_environment_alpha.Lwt.tRetrieves the current proposal.
val find_current_proposal :
Raw_context.t ->
Tezos_protocol_environment_alpha.Protocol_hash.t option
Tezos_protocol_environment_alpha.Error_monad.tzresult
Tezos_protocol_environment_alpha.Lwt.tRetrieves the current proposal.
val init_current_proposal :
Raw_context.t ->
Tezos_protocol_environment_alpha.Protocol_hash.t ->
Raw_context.t Tezos_protocol_environment_alpha.Error_monad.tzresult
Tezos_protocol_environment_alpha.Lwt.tRegisters a current proposal.
val clear_current_proposal :
Raw_context.t ->
Raw_context.t Tezos_protocol_environment_alpha.Lwt.tRemoves the current proposal. Does nothing if there was no current proposal.
val init :
Raw_context.t ->
start_position:Tezos_protocol_environment_alpha.Int32.t ->
Raw_context.t Tezos_protocol_environment_alpha.Error_monad.tzresult
Tezos_protocol_environment_alpha.Lwt.tSets the initial quorum to 80% and period kind to proposal.