You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
1.7 KiB
60 lines
1.7 KiB
// SPDX-License-Identifier: MIT
|
|
|
|
pragma solidity ^0.8.0;
|
|
|
|
import "../governance/extensions/GovernorProposalThreshold.sol";
|
|
import "../governance/extensions/GovernorSettings.sol";
|
|
import "../governance/extensions/GovernorCountingSimple.sol";
|
|
import "../governance/extensions/GovernorVotesQuorumFraction.sol";
|
|
|
|
contract GovernorMock is
|
|
GovernorProposalThreshold,
|
|
GovernorSettings,
|
|
GovernorVotesQuorumFraction,
|
|
GovernorCountingSimple
|
|
{
|
|
constructor(
|
|
string memory name_,
|
|
IVotes token_,
|
|
uint256 votingDelay_,
|
|
uint256 votingPeriod_,
|
|
uint256 quorumNumerator_
|
|
)
|
|
Governor(name_)
|
|
GovernorSettings(votingDelay_, votingPeriod_, 0)
|
|
GovernorVotes(token_)
|
|
GovernorVotesQuorumFraction(quorumNumerator_)
|
|
{}
|
|
|
|
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(IGovernor, GovernorVotes)
|
|
returns (uint256)
|
|
{
|
|
return super.getVotes(account, blockNumber);
|
|
}
|
|
|
|
function proposalThreshold() public view override(Governor, GovernorSettings) returns (uint256) {
|
|
return super.proposalThreshold();
|
|
}
|
|
|
|
function propose(
|
|
address[] memory targets,
|
|
uint256[] memory values,
|
|
bytes[] memory calldatas,
|
|
string memory description
|
|
) public virtual override(Governor, GovernorProposalThreshold) returns (uint256) {
|
|
return super.propose(targets, values, calldatas, description);
|
|
}
|
|
}
|
|
|