mirror of
https://github.com/Instadapp/dsa-connectors.git
synced 2024-07-29 22:37:00 +00:00
15 lines
287 B
Solidity
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
|
|
);
|
|
}
|