Skip to content

Commit

Permalink
test: GovernorV3 fork tests
Browse files Browse the repository at this point in the history
  • Loading branch information
lekhovitsky committed Nov 20, 2023
1 parent d9fd78c commit d47e4e2
Show file tree
Hide file tree
Showing 5 changed files with 522 additions and 1 deletion.
6 changes: 6 additions & 0 deletions contracts/interfaces/ITimeLock.sol
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ pragma solidity ^0.8.0;

/// @title Timelock interface
interface ITimeLock {
function admin() external view returns (address);

function delay() external view returns (uint256);

function queuedTransactions(bytes32 txHash) external view returns (bool);

function queueTransaction(address target, uint256 value, string memory signature, bytes memory data, uint256 eta)
Expand All @@ -19,5 +23,7 @@ interface ITimeLock {
function cancelTransaction(address target, uint256 value, string memory signature, bytes memory data, uint256 eta)
external;

function setPendingAdmin(address newPendingAdmin) external;

function acceptAdmin() external;
}
Loading

0 comments on commit d47e4e2

Please sign in to comment.