Tally Votes

At the end of each epoch, the votes cast in that epoch need to tallied to determine the new desiredEgl value. This can be called directly by any wallet, or will get called automatically on any vote(...) or reVote(...) call if the epoch has ended.

See Voting Threshold for details regarding participation requirements

See Calculating desiredEgl for details regarding how the desiredEgl is calculated

1.tallyVotes()

Function Signature

function tallyVotes() public whenNotPaused

Validations

Events Emitted

  • VoteThresholdMet (Conditional)

  • VoteThresholdFailed (Conditional)

  • CreatorRewardsClaimed (Conditional)

  • VotesTallied

Web3 Example

await eglVotingInstance.tallyVotes({ from: "0x2be650ba..."})

Last updated