dsa-connectors/contracts/avalanche/connectors/aave/v2-to-v3-import/events.sol
2022-03-22 20:25:14 +05:30

19 lines
395 B
Solidity

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