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