2022-03-22 14:55:14 +00:00
|
|
|
//SPDX-License-Identifier: MIT
|
2022-03-10 20:10:00 +00:00
|
|
|
pragma solidity ^0.7.0;
|
2022-03-06 13:01:34 +00:00
|
|
|
pragma experimental ABIEncoderV2;
|
|
|
|
|
|
|
|
contract Events {
|
|
|
|
event LogAaveV3Import(
|
|
|
|
address indexed user,
|
2022-05-05 18:27:38 +00:00
|
|
|
address[] atokens,
|
2022-03-06 13:01:34 +00:00
|
|
|
string[] supplyIds,
|
|
|
|
string[] borrowIds,
|
2022-03-10 20:10:00 +00:00
|
|
|
uint256[] flashLoanFees,
|
2022-03-06 13:01:34 +00:00
|
|
|
uint256[] supplyAmts,
|
|
|
|
uint256[] borrowAmts
|
|
|
|
);
|
2022-05-05 18:27:38 +00:00
|
|
|
event LogAaveV3ImportWithCollateral(
|
|
|
|
address indexed user,
|
|
|
|
address[] atokens,
|
|
|
|
string[] supplyIds,
|
|
|
|
string[] borrowIds,
|
|
|
|
uint256[] flashLoanFees,
|
|
|
|
uint256[] supplyAmts,
|
|
|
|
uint256[] borrowAmts,
|
|
|
|
bool[] enableCollateral
|
|
|
|
);
|
2022-03-06 13:01:34 +00:00
|
|
|
}
|