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

18 lines
364 B
Solidity
Raw Normal View History

2022-03-06 12:49:55 +00:00
pragma solidity ^0.7.0;
contract Events {
2022-03-09 12:03:30 +00:00
event LogAaveImportV2ToV3(
2022-03-06 12:49:55 +00:00
address indexed user,
2022-03-09 12:03:30 +00:00
bool doImport,
2022-03-06 12:49:55 +00:00
bool convertStable,
2022-03-16 13:25:17 +00:00
address[] supplyTokensV2,
address[] supplyTokensV3,
address[] borrowTokensV2,
address[] borrowTokensV3,
2022-03-06 12:49:55 +00:00
uint256[] flashLoanFees,
uint256[] supplyAmts,
uint256[] stableBorrowAmts,
uint256[] variableBorrowAmts
);
}