-
Notifications
You must be signed in to change notification settings - Fork 40
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
8 changed files
with
1,491 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
pragma solidity ^0.8.27; | ||
|
||
interface IEurekaModule { | ||
function onZkgm(bytes calldata sender, bytes calldata message) external; | ||
} |
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,9 @@ | ||
pragma solidity ^0.8.27; | ||
|
||
import "@openzeppelin/token/ERC20/IERC20.sol"; | ||
import "@openzeppelin/token/ERC20/extensions/IERC20Metadata.sol"; | ||
|
||
interface IZkgmERC20 is IERC20, IERC20Metadata { | ||
function mint(address to, uint256 amount) external; | ||
function burn(address from, uint256 amount) external; | ||
} |
Oops, something went wrong.