Files
smom-dbis-138/contracts/emoney/interfaces/IeMoneyToken.sol
2026-03-02 12:14:09 -08:00

12 lines
341 B
Solidity

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;
/**
* @title IeMoneyToken
* @notice Minimal interface for eMoney tokens (mint/burn with reason)
*/
interface IeMoneyToken {
function mint(address to, uint256 amount, bytes32 reasonHash) external;
function burn(address from, uint256 amount, bytes32 reasonHash) external;
}