infinite-proxy/contracts/example/module1/events.sol
2022-04-15 17:16:15 +05:30

11 lines
204 B
Solidity

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../common/variables.sol";
contract Events is Variables {
event supplyLog(uint256 amount_);
event withdrawLog(uint256 amount_);
}