2022-04-01 04:43:17 +00:00
|
|
|
//SPDX-License-Identifier: MIT
|
|
|
|
pragma solidity ^0.7.0;
|
|
|
|
pragma experimental ABIEncoderV2;
|
|
|
|
|
|
|
|
contract Events {
|
2022-04-04 16:18:01 +00:00
|
|
|
event LogAaveV3ImportWithPermit(
|
2022-04-01 04:43:17 +00:00
|
|
|
address indexed user,
|
2022-04-04 16:19:53 +00:00
|
|
|
address[] atokens,
|
2022-04-01 04:43:17 +00:00
|
|
|
string[] supplyIds,
|
|
|
|
string[] borrowIds,
|
|
|
|
uint256[] flashLoanFees,
|
|
|
|
uint256[] supplyAmts,
|
|
|
|
uint256[] borrowAmts
|
|
|
|
);
|
2022-05-07 16:37:58 +00:00
|
|
|
event LogAaveV3ImportWithPermitAndCollateral(
|
|
|
|
address indexed user,
|
|
|
|
address[] atokens,
|
|
|
|
string[] supplyIds,
|
|
|
|
string[] borrowIds,
|
|
|
|
uint256[] flashLoanFees,
|
|
|
|
uint256[] supplyAmts,
|
|
|
|
uint256[] borrowAmts,
|
|
|
|
bool[] enableCollateral
|
|
|
|
);
|
2022-04-01 04:43:17 +00:00
|
|
|
}
|