forked from DecentralizedClimateFoundation/DCIPs
110 lines
3.3 KiB
Solidity
110 lines
3.3 KiB
Solidity
pragma solidity ^0.8.4;
|
|
|
|
import "@openzeppelin/contracts/governance/Governor.sol";
|
|
import "@openzeppelin/contracts/governance/extensions/GovernorSettings.sol";
|
|
import "@openzeppelin/contracts/governance/extensions/GovernorCountingSimple.sol";
|
|
import "@openzeppelin/contracts/governance/extensions/GovernorVotes.sol";
|
|
import "@openzeppelin/contracts/governance/extensions/GovernorVotesQuorumFraction.sol";
|
|
import "@openzeppelin/contracts/governance/extensions/GovernorTimelockControl.sol";
|
|
import "../interfaces/IInfluencer.sol";
|
|
import "@openzeppelin/contracts/governance/utils/IVotes.sol";
|
|
|
|
contract MyGovernor is Governor, GovernorSettings, GovernorCountingSimple, GovernorVotes, GovernorTimelockControl {
|
|
constructor(IVotes _token, TimelockController _timelock)
|
|
Governor("MyGovernor")
|
|
GovernorSettings(1 /* 1 block */, 45818 /* 1 week */, 0)
|
|
GovernorVotes(_token)
|
|
GovernorVotesQuorumFraction(4)
|
|
GovernorTimelockControl(_timelock)
|
|
{}
|
|
|
|
// The following functions are overrides required by Solidity.
|
|
|
|
function votingDelay()
|
|
public
|
|
view
|
|
override(IGovernor, GovernorSettings)
|
|
returns (uint256)
|
|
{
|
|
return super.votingDelay();
|
|
}
|
|
|
|
function votingPeriod()
|
|
public
|
|
view
|
|
override(IGovernor, GovernorSettings)
|
|
returns (uint256)
|
|
{
|
|
return super.votingPeriod();
|
|
}
|
|
|
|
function quorum(uint256 blockNumber)
|
|
public
|
|
view
|
|
override(IGovernor, GovernorVotesQuorumFraction)
|
|
returns (uint256)
|
|
{
|
|
return super.quorum(blockNumber);
|
|
}
|
|
|
|
function state(uint256 proposalId)
|
|
public
|
|
view
|
|
override(Governor, GovernorTimelockControl)
|
|
returns (ProposalState)
|
|
{
|
|
return super.state(proposalId);
|
|
}
|
|
|
|
function propose(address[] memory targets, uint256[] memory values, bytes[] memory calldatas, string memory description)
|
|
public
|
|
override(Governor, IGovernor)
|
|
returns (uint256)
|
|
{
|
|
// check if sender is enforcer
|
|
return super.propose(targets, values, calldatas, description);
|
|
}
|
|
|
|
function proposalThreshold()
|
|
public
|
|
view
|
|
override(Governor, GovernorSettings)
|
|
returns (uint256)
|
|
{
|
|
return super.proposalThreshold();
|
|
}
|
|
|
|
function _execute(uint256 proposalId, address[] memory targets, uint256[] memory values, bytes[] memory calldatas, bytes32 descriptionHash)
|
|
internal
|
|
override(Governor, GovernorTimelockControl)
|
|
{
|
|
super._execute(proposalId, targets, values, calldatas, descriptionHash);
|
|
}
|
|
|
|
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 _executor()
|
|
internal
|
|
view
|
|
override(Governor, GovernorTimelockControl)
|
|
returns (address)
|
|
{
|
|
return super._executor();
|
|
}
|
|
|
|
function supportsInterface(bytes4 interfaceId)
|
|
public
|
|
view
|
|
override(Governor, GovernorTimelockControl)
|
|
returns (bool)
|
|
{
|
|
return super.supportsInterface(interfaceId);
|
|
}
|
|
}
|