123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- // SPDX-License-Identifier: MIT
- // OpenZeppelin Contracts (last updated v4.8.0) (governance/extensions/GovernorVotesQuorumFraction.sol)
- pragma solidity ^0.8.0;
- import "./GovernorVotes.sol";
- import "../../utils/Checkpoints.sol";
- import "../../utils/math/SafeCast.sol";
- /**
- * @dev Extension of {Governor} for voting weight extraction from an {ERC20Votes} token and a quorum expressed as a
- * fraction of the total supply.
- *
- * _Available since v4.3._
- */
- abstract contract GovernorVotesQuorumFraction is GovernorVotes {
- using SafeCast for *;
- using Checkpoints for Checkpoints.Trace224;
- uint256 private _quorumNumerator; // DEPRECATED in favor of _quorumNumeratorHistory
- /// @custom:oz-retyped-from Checkpoints.History
- Checkpoints.Trace224 private _quorumNumeratorHistory;
- event QuorumNumeratorUpdated(uint256 oldQuorumNumerator, uint256 newQuorumNumerator);
- /**
- * @dev Initialize quorum as a fraction of the token's total supply.
- *
- * The fraction is specified as `numerator / denominator`. By default the denominator is 100, so quorum is
- * specified as a percent: a numerator of 10 corresponds to quorum being 10% of total supply. The denominator can be
- * customized by overriding {quorumDenominator}.
- */
- constructor(uint256 quorumNumeratorValue) {
- _updateQuorumNumerator(quorumNumeratorValue);
- }
- /**
- * @dev Returns the current quorum numerator. See {quorumDenominator}.
- */
- function quorumNumerator() public view virtual returns (uint256) {
- return _quorumNumeratorHistory._checkpoints.length == 0 ? _quorumNumerator : _quorumNumeratorHistory.latest();
- }
- /**
- * @dev Returns the quorum numerator at a specific timepoint. See {quorumDenominator}.
- */
- function quorumNumerator(uint256 timepoint) public view virtual returns (uint256) {
- // If history is empty, fallback to old storage
- uint256 length = _quorumNumeratorHistory._checkpoints.length;
- if (length == 0) {
- return _quorumNumerator;
- }
- // Optimistic search, check the latest checkpoint
- Checkpoints.Checkpoint224 memory latest = _quorumNumeratorHistory._checkpoints[length - 1];
- if (latest._key <= timepoint) {
- return latest._value;
- }
- // Otherwise, do the binary search
- return _quorumNumeratorHistory.upperLookupRecent(timepoint.toUint32());
- }
- /**
- * @dev Returns the quorum denominator. Defaults to 100, but may be overridden.
- */
- function quorumDenominator() public view virtual returns (uint256) {
- return 100;
- }
- /**
- * @dev Returns the quorum for a timepoint, in terms of number of votes: `supply * numerator / denominator`.
- */
- function quorum(uint256 timepoint) public view virtual override returns (uint256) {
- return (token.getPastTotalSupply(timepoint) * quorumNumerator(timepoint)) / quorumDenominator();
- }
- /**
- * @dev Changes the quorum numerator.
- *
- * Emits a {QuorumNumeratorUpdated} event.
- *
- * Requirements:
- *
- * - Must be called through a governance proposal.
- * - New numerator must be smaller or equal to the denominator.
- */
- function updateQuorumNumerator(uint256 newQuorumNumerator) external virtual onlyGovernance {
- _updateQuorumNumerator(newQuorumNumerator);
- }
- /**
- * @dev Changes the quorum numerator.
- *
- * Emits a {QuorumNumeratorUpdated} event.
- *
- * Requirements:
- *
- * - New numerator must be smaller or equal to the denominator.
- */
- function _updateQuorumNumerator(uint256 newQuorumNumerator) internal virtual {
- require(
- newQuorumNumerator <= quorumDenominator(),
- "GovernorVotesQuorumFraction: quorumNumerator over quorumDenominator"
- );
- uint256 oldQuorumNumerator = quorumNumerator();
- // Make sure we keep track of the original numerator in contracts upgraded from a version without checkpoints.
- if (oldQuorumNumerator != 0 && _quorumNumeratorHistory._checkpoints.length == 0) {
- _quorumNumeratorHistory._checkpoints.push(
- Checkpoints.Checkpoint224({_key: 0, _value: oldQuorumNumerator.toUint224()})
- );
- }
- // Set new quorum for future proposals
- _quorumNumeratorHistory.push(clock().toUint32(), newQuorumNumerator.toUint224());
- emit QuorumNumeratorUpdated(oldQuorumNumerator, newQuorumNumerator);
- }
- }
|