forked from OpenZeppelin/openzeppelin-contracts
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathGovernorSuperQuorumMock.sol
More file actions
95 lines (81 loc) · 3.11 KB
/
Copy pathGovernorSuperQuorumMock.sol
File metadata and controls
95 lines (81 loc) · 3.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.24;
import {Governor} from "../../governance/Governor.sol";
import {GovernorSettings} from "../../governance/extensions/GovernorSettings.sol";
import {GovernorVotes} from "../../governance/extensions/GovernorVotes.sol";
import {GovernorSuperQuorum} from "../../governance/extensions/GovernorSuperQuorum.sol";
import {GovernorCountingSimple} from "../../governance/extensions/GovernorCountingSimple.sol";
import {GovernorTimelockControl} from "../../governance/extensions/GovernorTimelockControl.sol";
abstract contract GovernorSuperQuorumMock is
GovernorSettings,
GovernorVotes,
GovernorTimelockControl,
GovernorSuperQuorum,
GovernorCountingSimple
{
uint256 private _quorum;
uint256 private _superQuorum;
constructor(uint256 quorum_, uint256 superQuorum_) {
_quorum = quorum_;
_superQuorum = superQuorum_;
}
function quorum(uint256) public view override returns (uint256) {
return _quorum;
}
function superQuorum(uint256) public view override returns (uint256) {
return _superQuorum;
}
function state(
uint256 proposalId
) public view override(Governor, GovernorSuperQuorum, GovernorTimelockControl) returns (ProposalState) {
return super.state(proposalId);
}
function proposalThreshold() public view override(Governor, GovernorSettings) returns (uint256) {
return super.proposalThreshold();
}
function proposalVotes(
uint256 proposalId
)
public
view
virtual
override(GovernorCountingSimple, GovernorSuperQuorum)
returns (uint256 againstVotes, uint256 forVotes, uint256 abstainVotes)
{
return super.proposalVotes(proposalId);
}
function _cancel(
address[] memory targets,
uint256[] memory values,
bytes[] memory calldatas,
bytes32 descriptionHash
) internal override(Governor, GovernorTimelockControl) returns (uint256) {
return super._cancel(targets, values, calldatas, descriptionHash);
}
function _executeOperations(
uint256 proposalId,
address[] memory targets,
uint256[] memory values,
bytes[] memory calldatas,
bytes32 descriptionHash
) internal override(Governor, GovernorTimelockControl) {
super._executeOperations(proposalId, targets, values, calldatas, descriptionHash);
}
function _executor() internal view override(Governor, GovernorTimelockControl) returns (address) {
return super._executor();
}
function _queueOperations(
uint256 proposalId,
address[] memory targets,
uint256[] memory values,
bytes[] memory calldatas,
bytes32 descriptionHash
) internal override(Governor, GovernorTimelockControl) returns (uint48) {
return super._queueOperations(proposalId, targets, values, calldatas, descriptionHash);
}
function proposalNeedsQueuing(
uint256 proposalId
) public view override(Governor, GovernorTimelockControl) returns (bool) {
return super.proposalNeedsQueuing(proposalId);
}
}