-
Notifications
You must be signed in to change notification settings - Fork 204
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b10d009
commit 9c96569
Showing
1 changed file
with
113 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
// SPDX-License-Identifier: Apache-2.0 | ||
/* | ||
Copyright 2023 ZeroEx Intl. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
pragma solidity ^0.8.17; | ||
|
||
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"; | ||
|
||
/// @custom:security-contact security@0xproject.com | ||
contract ZeroExGovernor is | ||
Governor, | ||
GovernorSettings, | ||
GovernorCountingSimple, | ||
GovernorVotes, | ||
GovernorVotesQuorumFraction, | ||
GovernorTimelockControl | ||
{ | ||
constructor( | ||
IVotes _token, | ||
TimelockController _timelock | ||
) | ||
Governor("ZeroExGovernor") | ||
GovernorSettings( | ||
21600 /* voting delay: 3 days */, | ||
50400 /* voting period: 1 week */, | ||
0 /* proposal threshold */ | ||
) | ||
GovernorVotes(_token) | ||
GovernorVotesQuorumFraction(10) | ||
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) { | ||
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); | ||
} | ||
} |