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

15 lines
287 B
Solidity
Raw Normal View History

2022-03-06 12:49:55 +00:00
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
);
}