dsa-connectors/contracts/mainnet/connectors/guniswap_v3_erc20/events.sol

35 lines
704 B
Solidity
Raw Normal View History

2022-03-22 15:24:40 +00:00
//SPDX-License-Identifier: MIT
2021-06-07 18:02:13 +00:00
pragma solidity ^0.7.0;
contract Events {
2021-06-07 18:50:44 +00:00
event LogDepositLiquidity(
address indexed pool,
uint256 amtA,
uint256 amtB,
uint256 mintAmount,
2021-06-10 11:26:05 +00:00
uint256[] getIds,
2021-06-07 18:50:44 +00:00
uint256 setId
);
event LogWithdrawLiquidity(
address indexed pool,
uint256 amountA,
uint256 amountB,
uint256 burnAmount,
uint256 getId,
2021-06-10 11:26:05 +00:00
uint256[] setIds
);
event LogSwapAndDepositLiquidity(
address indexed pool,
uint256 amtA,
uint256 amtB,
uint256 mintAmount,
bool zeroForOne,
uint swapAmount,
2021-06-07 18:50:44 +00:00
uint256 getId,
uint256 setId
);
2021-06-07 18:02:13 +00:00
}