mirror of
https://github.com/Instadapp/dsa-periphery-contract.git
synced 2024-07-29 22:27:13 +00:00
13 lines
408 B
Solidity
13 lines
408 B
Solidity
|
// SPDX-License-Identifier: MIT OR Apache-2.0
|
||
|
pragma solidity ^0.8.17;
|
||
|
|
||
|
import {IERC20Metadata} from "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
|
||
|
|
||
|
interface IBridgeToken is IERC20Metadata {
|
||
|
function burn(address _from, uint256 _amnt) external;
|
||
|
|
||
|
function mint(address _to, uint256 _amnt) external;
|
||
|
|
||
|
function setDetails(string calldata _name, string calldata _symbol) external;
|
||
|
}
|