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]>
9 lines
323 B
Solidity
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;
|
|
}
|