dsa-connectors/contracts/avalanche/connectors/aave/v2-to-v3-import/events.sol
2022-03-06 18:19:55 +05:30

15 lines
287 B
Solidity

pragma solidity ^0.7.0;
contract Events {
event LogAaveV2ImportToV3(
address indexed user,
bool convertStable,
address[] supplyTokens,
address[] borrowTokens,
uint256[] flashLoanFees,
uint256[] supplyAmts,
uint256[] stableBorrowAmts,
uint256[] variableBorrowAmts
);
}