dsa-connectors-2.0/contracts/polygon/connectors/fluid/events.sol

21 lines
392 B
Solidity
Raw Normal View History

2024-01-10 16:01:52 +00:00
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;
contract Events {
2024-01-10 23:06:36 +00:00
event LogOperate(
2024-02-10 14:17:02 +00:00
address vaultAddress,
uint256 nftId,
int256 newCol,
int256 newDebt
);
event LogOperateWithIds(
2024-01-10 16:01:52 +00:00
address vaultAddress,
uint256 nftId,
int256 newCol,
int256 newDebt,
2024-01-10 23:06:36 +00:00
uint256[] getIds,
uint256[] setIds
2024-01-10 16:01:52 +00:00
);
2024-01-10 23:06:36 +00:00
}