dsa-connectors/contracts/polygon/connectors/aave/v2-to-v3-import/events.sol
2022-03-22 21:47:41 +05:30

17 lines
335 B
Solidity

//SPDX-License-Identifier: MIT
pragma solidity ^0.7.0;
contract Events {
event LogAaveImportV2ToV3(
address indexed user,
bool doImport,
bool convertStable,
address[] supplyTokens,
address[] borrowTokens,
uint256[] flashLoanFees,
uint256[] supplyAmts,
uint256[] stableBorrowAmts,
uint256[] variableBorrowAmts
);
}