Skip to content

Commit

Permalink
feat(zkgm): mint/unescrow mechanism for fungible assets
Browse files Browse the repository at this point in the history
  • Loading branch information
hussein-aitlahcen committed Dec 4, 2024
1 parent c524309 commit d05aa2d
Show file tree
Hide file tree
Showing 3 changed files with 450 additions and 47 deletions.
9 changes: 9 additions & 0 deletions evm/contracts/apps/ucs/03-zkgm/IZkgmERC20.sol
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;
}
Loading

0 comments on commit d05aa2d

Please sign in to comment.