dsa-connectors-2.0/contracts/polygon/connectors/fluid/events.sol
2024-01-10 20:01:52 +04:00

14 lines
258 B
Solidity

//SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;
contract Events {
event LogOperate (
address vaultAddress,
uint256 nftId,
int256 newCol,
int256 newDebt,
address to,
uint256 getId,
uint256 setId
);
}