mirror of
https://github.com/Instadapp/infinite-proxy.git
synced 2024-07-29 21:47:49 +00:00
11 lines
204 B
Solidity
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_);
|
|
}
|