// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../governance/extensions/GovernorProposalThresholdUpgradeable.sol"; import "../governance/extensions/GovernorSettingsUpgradeable.sol"; import "../governance/extensions/GovernorCountingSimpleUpgradeable.sol"; import "../governance/extensions/GovernorVotesQuorumFractionUpgradeable.sol"; import "../proxy/utils/Initializable.sol"; contract GovernorMockUpgradeable is Initializable, GovernorProposalThresholdUpgradeable, GovernorSettingsUpgradeable, GovernorVotesQuorumFractionUpgradeable, GovernorCountingSimpleUpgradeable { function __GovernorMock_init( string memory name_, IVotesUpgradeable token_, uint256 votingDelay_, uint256 votingPeriod_, uint256 quorumNumerator_ ) internal onlyInitializing { __EIP712_init_unchained(name_, version()); __Governor_init_unchained(name_); __GovernorSettings_init_unchained(votingDelay_, votingPeriod_, 0); __GovernorVotes_init_unchained(token_); __GovernorVotesQuorumFraction_init_unchained(quorumNumerator_); } function __GovernorMock_init_unchained( string memory, IVotesUpgradeable, uint256, uint256, uint256 ) internal onlyInitializing {} function cancel( address[] memory targets, uint256[] memory values, bytes[] memory calldatas, bytes32 salt ) public returns (uint256 proposalId) { return _cancel(targets, values, calldatas, salt); } function getVotes(address account, uint256 blockNumber) public view virtual override(IGovernorUpgradeable, GovernorVotesUpgradeable) returns (uint256) { return super.getVotes(account, blockNumber); } function proposalThreshold() public view override(GovernorUpgradeable, GovernorSettingsUpgradeable) returns (uint256) { return super.proposalThreshold(); } function propose( address[] memory targets, uint256[] memory values, bytes[] memory calldatas, string memory description ) public virtual override(GovernorUpgradeable, GovernorProposalThresholdUpgradeable) returns (uint256) { return super.propose(targets, values, calldatas, description); } /** * 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; }