mirror of
https://github.com/Instadapp/dsa-connectors.git
synced 2024-07-29 22:37:00 +00:00
54 lines
1.0 KiB
Solidity
54 lines
1.0 KiB
Solidity
//SPDX-License-Identifier: MIT
|
|
pragma solidity ^0.7.0;
|
|
|
|
contract Events {
|
|
event LogMint(
|
|
uint256 indexed tokenId,
|
|
uint256 liquidity,
|
|
uint256 amtA,
|
|
uint256 amtB,
|
|
int24 tickLower,
|
|
int24 tickUpper
|
|
);
|
|
|
|
event LogDeposit(
|
|
uint256 indexed tokenId,
|
|
uint256 liquidity,
|
|
uint256 amountA,
|
|
uint256 amountB
|
|
);
|
|
|
|
event LogWithdraw(
|
|
uint256 indexed tokenId,
|
|
uint256 liquidity,
|
|
uint256 amountA,
|
|
uint256 amountB
|
|
);
|
|
|
|
event LogCollect(
|
|
uint256 tokenId,
|
|
uint256 amountA,
|
|
uint256 amountB
|
|
);
|
|
|
|
event LogBurnPosition(uint256 tokenId);
|
|
|
|
event LogBuy(
|
|
address indexed buyToken,
|
|
address indexed sellToken,
|
|
uint256 buyAmt,
|
|
uint256 sellAmt,
|
|
uint256 getId,
|
|
uint256 setId
|
|
);
|
|
|
|
event LogSell(
|
|
address indexed buyToken,
|
|
address indexed sellToken,
|
|
uint256 buyAmt,
|
|
uint256 sellAmt,
|
|
uint256 getId,
|
|
uint256 setId
|
|
);
|
|
}
|