2022-03-22 14:47:37 +00:00
|
|
|
//SPDX-License-Identifier: MIT
|
2022-03-11 10:08:38 +00:00
|
|
|
pragma solidity ^0.7.0;
|
|
|
|
pragma experimental ABIEncoderV2;
|
|
|
|
|
|
|
|
contract Events {
|
|
|
|
event LogAaveV3Import(
|
|
|
|
address indexed user,
|
|
|
|
address[] ctokens,
|
|
|
|
string[] supplyIds,
|
|
|
|
string[] borrowIds,
|
|
|
|
uint256[] flashLoanFees,
|
|
|
|
uint256[] supplyAmts,
|
|
|
|
uint256[] borrowAmts
|
|
|
|
);
|
2022-05-05 18:06:51 +00:00
|
|
|
event LogAaveV3ImportWithCollateral(
|
|
|
|
address indexed user,
|
|
|
|
address[] ctokens,
|
|
|
|
string[] supplyIds,
|
|
|
|
string[] borrowIds,
|
|
|
|
uint256[] flashLoanFees,
|
|
|
|
uint256[] supplyAmts,
|
|
|
|
uint256[] borrowAmts,
|
|
|
|
bool[] enableCollateral
|
|
|
|
);
|
2022-03-11 10:08:38 +00:00
|
|
|
}
|