commit
This commit is contained in:
9
contracts/interfaces/IUSDY.sol
Normal file
9
contracts/interfaces/IUSDY.sol
Normal file
@@ -0,0 +1,9 @@
|
||||
// SPDX-License-Identifier: MIT
|
||||
pragma solidity ^0.8.0;
|
||||
|
||||
interface IUSDY {
|
||||
function mint(address _to, uint256 _amount) external;
|
||||
function burn(address _from, uint256 _amount) external;
|
||||
function totalSupply() external view returns (uint256);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user