dsa-connectors/contracts/mainnet/connectors/compound-import/events.sol

15 lines
277 B
Solidity
Raw Normal View History

2022-03-23 08:11:24 +00:00
// SPDX-License-Identifier: MIT
pragma solidity ^0.7.6;
2022-02-27 04:10:25 +00:00
pragma experimental ABIEncoderV2;
contract Events {
2022-03-23 08:11:24 +00:00
event LogCompoundImport(
address indexed user,
address[] ctokens,
string[] supplyIds,
string[] borrowIds,
uint256[] supplyAmts,
uint256[] borrowAmts
);
}