-
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.
test (CRC-582): Update tests for CirclesBacking and CirclesBackingFac…
…tory contracts
- Loading branch information
1 parent
c075855
commit ac0d576
Showing
4 changed files
with
225 additions
and
119 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
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
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,20 @@ | ||
// SPDX-License-Identifier: AGPL-3.0-only | ||
pragma solidity >=0.8.24; | ||
|
||
import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; | ||
|
||
/** | ||
* @title IToken v1 | ||
* @author Circles UBI | ||
* @notice legacy interface of Hub contract in Circles v1 | ||
*/ | ||
interface ITokenV1 is IERC20 { | ||
function owner() external view returns (address); | ||
|
||
function stop() external; | ||
function stopped() external view returns (bool); | ||
|
||
function update() external; | ||
|
||
function lastTouched() external view returns (uint256); | ||
} |
Oops, something went wrong.