dsa-connectors/contracts/optimism/connectors/aave/v3-import/events.sol

16 lines
301 B
Solidity
Raw Normal View History

2022-03-22 15:27:59 +00:00
//SPDX-License-Identifier: MIT
2022-03-11 10:08:49 +00:00
pragma solidity ^0.7.0;
pragma experimental ABIEncoderV2;
contract Events {
event LogAaveV3Import(
address indexed user,
address[] ctokens,
string[] supplyIds,
string[] borrowIds,
uint256[] flashLoanFees,
uint256[] supplyAmts,
uint256[] borrowAmts
);
}