-
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
Showing
2 changed files
with
17 additions
and
6 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,17 @@ | ||
// SPDX-License-Identifier: GPL-3.0-or-later | ||
pragma solidity ^0.8; | ||
|
||
/** | ||
* @title IContext | ||
* @notice Interface that combines methods used to interact with the context of the script | ||
* can be used when passing the script into library functions. | ||
*/ | ||
interface IContext { | ||
function lookup(string memory contractName) external view returns (address); | ||
|
||
function isCelo() external view returns (bool); | ||
|
||
function isBaklava() external view returns (bool); | ||
|
||
function isAlfajores() external view returns (bool); | ||
} |
This file was deleted.
Oops, something went wrong.