// 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; }