dsa-connectors/contracts/polygon/connectors/aave/v2-to-v3-import/events.sol

17 lines
335 B
Solidity
Raw Normal View History

2022-03-22 16:17:41 +00:00
//SPDX-License-Identifier: MIT
2022-03-06 12:49:42 +00:00
pragma solidity ^0.7.0;
contract Events {
2022-03-08 20:24:59 +00:00
event LogAaveImportV2ToV3(
2022-03-06 12:49:42 +00:00
address indexed user,
2022-03-08 20:12:39 +00:00
bool doImport,
2022-03-06 12:49:42 +00:00
bool convertStable,
address[] supplyTokens,
address[] borrowTokens,
uint256[] flashLoanFees,
uint256[] supplyAmts,
uint256[] stableBorrowAmts,
uint256[] variableBorrowAmts
);
}