dsa-connectors/contracts/base/connectors/compound-import/events.sol
2023-08-16 14:30:00 -04:00

15 lines
277 B
Solidity

// SPDX-License-Identifier: MIT
pragma solidity ^0.7.6;
pragma experimental ABIEncoderV2;
contract Events {
event LogCompoundImport(
address indexed user,
address[] ctokens,
string[] supplyIds,
string[] borrowIds,
uint256[] supplyAmts,
uint256[] borrowAmts
);
}