123456789101112131415161718192021222324252627282930313233343536373839 |
- // SPDX-License-Identifier: MIT
- // OpenZeppelin Contracts v4.4.1 (governance/extensions/GovernorVotesComp.sol)
- pragma solidity ^0.8.0;
- import "../GovernorUpgradeable.sol";
- import "../../token/ERC20/extensions/ERC20VotesCompUpgradeable.sol";
- import "../../proxy/utils/Initializable.sol";
- /**
- * @dev Extension of {Governor} for voting weight extraction from a Comp token.
- *
- * _Available since v4.3._
- */
- abstract contract GovernorVotesCompUpgradeable is Initializable, GovernorUpgradeable {
- ERC20VotesCompUpgradeable public token;
- function __GovernorVotesComp_init(ERC20VotesCompUpgradeable token_) internal onlyInitializing {
- __GovernorVotesComp_init_unchained(token_);
- }
- function __GovernorVotesComp_init_unchained(ERC20VotesCompUpgradeable token_) internal onlyInitializing {
- token = token_;
- }
- /**
- * Read the voting weight from the token's built in snapshot mechanism (see {IGovernor-getVotes}).
- */
- function getVotes(address account, uint256 blockNumber) public view virtual override returns (uint256) {
- return token.getPriorVotes(account, blockNumber);
- }
- /**
- * @dev This empty reserved space is put in place to allow future versions to add new
- * variables without shifting down storage in the inheritance chain.
- * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
- */
- uint256[50] private __gap;
- }
|