9 lines
201 B
Solidity
9 lines
201 B
Solidity
|
|
// SPDX-License-Identifier: MIT
|
||
|
|
pragma solidity ^0.8.0;
|
||
|
|
|
||
|
|
interface IYTLPToken {
|
||
|
|
function mint(address _to, uint256 _amount) external;
|
||
|
|
function burn(address _from, uint256 _amount) external;
|
||
|
|
}
|
||
|
|
|