15 lines
362 B
Solidity
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);
|
|
}
|
|
}
|