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

15 lines
362 B
Solidity

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;
import "@openzeppelin/contracts/access/AccessControl.sol";
/**
* @title TokenFactory138
* @notice Stub for build; full implementation when emoney module is restored
*/
contract TokenFactory138 is AccessControl {
constructor(address admin) {
_grantRole(DEFAULT_ADMIN_ROLE, admin);
}
}