dsa-connectors/contracts/mainnet/connectors/compound-import/events.sol
2022-03-23 13:41:24 +05:30

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
);
}