forked from sushi-labs/sushiswap
-
Notifications
You must be signed in to change notification settings - Fork 0
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
ee05c78
commit d2d3f17
Showing
1 changed file
with
170 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,170 @@ | ||
pragma solidity ^0.6.12; | ||
|
||
// a library for performing overflow-safe math, updated with awesomeness from of DappHub (https://github.com/dapphub/ds-math) | ||
library BoringMath { | ||
function add(uint a, uint b) internal pure returns (uint c) {require((c = a + b) >= b, "BoringMath: Add Overflow");} | ||
function sub(uint a, uint b) internal pure returns (uint c) {require((c = a - b) <= a, "BoringMath: Underflow");} | ||
function mul(uint a, uint b) internal pure returns (uint c) {require(a == 0 || (c = a * b)/b == a, "BoringMath: Mul Overflow");} | ||
} | ||
|
||
interface IERC20 { | ||
function totalSupply() external view returns (uint256); | ||
function transfer(address recipient, uint256 amount) external returns (bool); | ||
function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); | ||
} | ||
|
||
// File: contracts/Timelock.sol | ||
|
||
// COPIED FROM https://github.com/compound-finance/compound-protocol/blob/master/contracts/Governance/GovernorAlpha.sol | ||
// Copyright 2020 Compound Labs, Inc. | ||
// Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: | ||
// 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. | ||
// 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. | ||
// 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. | ||
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
// Edited by ChefNomi and BoringCrypto | ||
|
||
contract Timelock { | ||
using BoringMath for uint; | ||
|
||
event NewAdmin(address indexed newAdmin); | ||
event NewPendingAdmin(address indexed newPendingAdmin); | ||
event NewDelay(uint indexed newDelay); | ||
event CancelTransaction(bytes32 indexed txHash, address indexed target, uint value, string signature, bytes data, uint eta); | ||
event ExecuteTransaction(bytes32 indexed txHash, address indexed target, uint value, string signature, bytes data, uint eta); | ||
event QueueTransaction(bytes32 indexed txHash, address indexed target, uint value, string signature, bytes data, uint eta); | ||
|
||
uint public constant GRACE_PERIOD = 14 days; | ||
uint public constant MINIMUM_DELAY = 2 days; | ||
uint public constant MAXIMUM_DELAY = 30 days; | ||
|
||
address public admin; | ||
address public pendingAdmin; | ||
uint public delay; | ||
bool public admin_initialized; | ||
|
||
mapping (bytes32 => bool) public queuedTransactions; | ||
|
||
constructor(address admin_, uint delay_) public { | ||
require(delay_ >= MINIMUM_DELAY, "Timelock::constructor: Delay must exceed minimum delay."); | ||
require(delay_ <= MAXIMUM_DELAY, "Timelock::constructor: Delay must not exceed maximum delay."); | ||
|
||
admin = admin_; | ||
delay = delay_; | ||
admin_initialized = false; | ||
} | ||
|
||
// What is this for?? | ||
receive() external payable { } | ||
|
||
function setDelay(uint delay_) public { | ||
require(msg.sender == address(this), "Timelock::setDelay: Call must come from Timelock."); | ||
require(delay_ >= MINIMUM_DELAY, "Timelock::setDelay: Delay must exceed minimum delay."); | ||
require(delay_ <= MAXIMUM_DELAY, "Timelock::setDelay: Delay must not exceed maximum delay."); | ||
delay = delay_; | ||
|
||
emit NewDelay(delay); | ||
} | ||
|
||
function acceptAdmin() public { | ||
require(msg.sender == pendingAdmin, "Timelock::acceptAdmin: Call must come from pendingAdmin."); | ||
admin = msg.sender; | ||
pendingAdmin = address(0); | ||
|
||
emit NewAdmin(admin); | ||
} | ||
|
||
function setPendingAdmin(address pendingAdmin_) public { | ||
// allows one time setting of admin for deployment purposes | ||
if (admin_initialized) { | ||
require(msg.sender == address(this), "Timelock::setPendingAdmin: Call must come from Timelock."); | ||
} else { | ||
require(msg.sender == admin, "Timelock::setPendingAdmin: First call must come from admin."); | ||
admin_initialized = true; | ||
} | ||
pendingAdmin = pendingAdmin_; | ||
|
||
emit NewPendingAdmin(pendingAdmin); | ||
} | ||
|
||
function queueTransaction(address target, uint value, string memory signature, bytes memory data, uint eta) public returns (bytes32) { | ||
require(!paused(), "Timelock::executeTransaction: paused"); | ||
require(msg.sender == admin, "Timelock::queueTransaction: Call must come from admin."); | ||
require(eta >= block.timestamp.add(delay), "Timelock::queueTransaction: Estimated execution block must satisfy delay."); | ||
|
||
bytes32 txHash = keccak256(abi.encode(target, value, signature, data, eta)); | ||
queuedTransactions[txHash] = true; | ||
|
||
emit QueueTransaction(txHash, target, value, signature, data, eta); | ||
return txHash; | ||
} | ||
|
||
function cancelTransaction(address target, uint value, string memory signature, bytes memory data, uint eta) public { | ||
require(msg.sender == admin, "Timelock::cancelTransaction: Call must come from admin."); | ||
|
||
bytes32 txHash = keccak256(abi.encode(target, value, signature, data, eta)); | ||
queuedTransactions[txHash] = false; | ||
|
||
emit CancelTransaction(txHash, target, value, signature, data, eta); | ||
} | ||
|
||
address constant votingToken = 0x8798249c2E607446EfB7Ad49eC89dD1865Ff4272; | ||
mapping (address => uint256) pauseVotes; | ||
mapping (address => uint256) unpauseVotes; | ||
uint256 pause; | ||
uint256 unpause; | ||
|
||
function addVotes(uint256 amount, bool pause_) public { | ||
if (pause_) { | ||
pauseVotes[msg.sender] = pauseVotes[msg.sender].add(amount); | ||
pause = pause.add(amount); | ||
} else { | ||
unpauseVotes[msg.sender] = unpauseVotes[msg.sender].add(amount); | ||
unpause = unpause.add(amount); | ||
} | ||
require(IERC20(votingToken).transferFrom(msg.sender, address(this), amount), 'transfer failed'); | ||
} | ||
|
||
function removeVotes(uint256 amount, bool pause_) public { | ||
if (pause_) { | ||
pauseVotes[msg.sender] = pauseVotes[msg.sender].sub(amount); | ||
pause = pause.sub(amount); | ||
} else { | ||
unpauseVotes[msg.sender] = unpauseVotes[msg.sender].sub(amount); | ||
unpause = unpause.sub(amount); | ||
} | ||
require(IERC20(votingToken).transfer(msg.sender, amount), 'transfer failed'); | ||
} | ||
|
||
function paused() public view returns(bool) { | ||
return unpause.add(IERC20(votingToken).totalSupply() / 5) < pause; | ||
} | ||
|
||
function executeTransaction(address target, uint value, string memory signature, bytes memory data, uint eta) public payable returns (bytes memory) { | ||
require(!paused(), "Timelock::executeTransaction: paused"); | ||
require(msg.sender == admin, "Timelock::executeTransaction: Call must come from admin."); | ||
|
||
bytes32 txHash = keccak256(abi.encode(target, value, signature, data, eta)); | ||
require(queuedTransactions[txHash], "Timelock::executeTransaction: Transaction hasn't been queued."); | ||
require(block.timestamp >= eta, "Timelock::executeTransaction: Transaction hasn't surpassed time lock."); | ||
require(block.timestamp <= eta.add(GRACE_PERIOD), "Timelock::executeTransaction: Transaction is stale."); | ||
|
||
queuedTransactions[txHash] = false; | ||
|
||
bytes memory callData; | ||
|
||
if (bytes(signature).length == 0) { | ||
callData = data; | ||
} else { | ||
callData = abi.encodePacked(bytes4(keccak256(bytes(signature))), data); | ||
} | ||
|
||
// solium-disable-next-line security/no-call-value | ||
(bool success, bytes memory returnData) = target.call{value:value}(callData); | ||
require(success, "Timelock::executeTransaction: Transaction execution reverted."); | ||
|
||
emit ExecuteTransaction(txHash, target, value, signature, data, eta); | ||
|
||
return returnData; | ||
} | ||
} |