Files
smom-dbis-138/contracts/emoney/interfaces/IeMoneyToken.sol
T
defiQUGandCursor 651fb59786 Add mainnet checkpoint stack: ISO attestation, participant Etherscan surface, and services.
Ship AddressActivityRegistry V1/V2, ISO20022IntakeGateway, Chain138ParticipantSurface,
checkpoint hub contracts, checkpoint-core package, aggregator/indexer/sdk services,
relay profile guards, M00 diamond bridge facet, and OMNL compliance contracts.

Co-authored-by: Cursor <[email protected]>
2026-06-24 21:54:05 -07:00

9 lines
323 B
Solidity

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;
/// @notice Minimal eMoney token surface for vault adapters (full eMoney tree is optional).
interface IeMoneyToken {
function mint(address to, uint256 amount, bytes32 reason) external;
function burn(address from, uint256 amount, bytes32 reason) external;
}