The home for Hyperlane core contracts, sdk packages, and other infrastructure
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hyperlane-monorepo/solidity/optics-xapps/interfaces/token-bridge/IBridgeToken.sol

21 lines
492 B

// SPDX-License-Identifier: MIT OR Apache-2.0
pragma solidity >=0.6.11;
interface IBridgeToken {
function name() external returns (string memory);
function symbol() external returns (string memory);
function decimals() external returns (uint8);
function burn(address _from, uint256 _amnt) external;
function mint(address _to, uint256 _amnt) external;
function setDetails(
bytes32 _name,
bytes32 _symbol,
uint8 _decimals
) external;
}