2023-08-21 12:08:34 +00:00
|
|
|
//SPDX-License-Identifier: MIT
|
|
|
|
pragma solidity ^0.7.0;
|
|
|
|
|
|
|
|
contract Events {
|
|
|
|
event LogDeposit(
|
|
|
|
address indexed token,
|
|
|
|
uint256 underlyingAmt,
|
|
|
|
uint256 minSharesPerToken,
|
2023-08-21 12:23:00 +00:00
|
|
|
uint256 sharesReceieved,
|
2023-08-21 12:08:34 +00:00
|
|
|
uint256 getId,
|
|
|
|
uint256 setId
|
|
|
|
);
|
|
|
|
|
|
|
|
event LogMint(
|
|
|
|
address indexed token,
|
|
|
|
uint256 shareAmt,
|
|
|
|
uint256 maxTokenPerShares,
|
2023-08-21 19:43:00 +00:00
|
|
|
uint256 tokensDeducted,
|
2023-08-21 12:08:34 +00:00
|
|
|
uint256 getId,
|
|
|
|
uint256 setId
|
|
|
|
);
|
|
|
|
|
|
|
|
event LogWithdraw(
|
|
|
|
address indexed token,
|
|
|
|
uint256 underlyingAmt,
|
|
|
|
uint256 maxSharesPerToken,
|
2023-08-21 12:23:00 +00:00
|
|
|
uint256 sharedBurned,
|
2023-08-21 12:08:34 +00:00
|
|
|
address indexed to,
|
|
|
|
uint256 getId,
|
|
|
|
uint256 setId
|
|
|
|
);
|
|
|
|
|
|
|
|
event LogRedeem(
|
|
|
|
address indexed token,
|
|
|
|
uint256 shareAmt,
|
|
|
|
uint256 minTokenPerShares,
|
2023-08-21 12:23:00 +00:00
|
|
|
uint256 underlyingAmtReceieved,
|
2023-08-21 12:08:34 +00:00
|
|
|
address to,
|
|
|
|
uint256 getId,
|
|
|
|
uint256 setId
|
|
|
|
);
|
2023-08-21 12:23:00 +00:00
|
|
|
}
|