mirror of
https://github.com/Instadapp/dsa-connectors-2.0.git
synced 2024-07-29 21:57:39 +00:00
39 lines
639 B
Solidity
39 lines
639 B
Solidity
//SPDX-License-Identifier: MIT
|
|
pragma solidity ^0.8.19;
|
|
|
|
contract Events {
|
|
event LogDeposit(
|
|
address indexed token,
|
|
uint256 underlyingAmt,
|
|
uint256 sharesReceieved,
|
|
uint256 getId,
|
|
uint256 setId
|
|
);
|
|
|
|
event LogMint(
|
|
address indexed token,
|
|
uint256 shareAmt,
|
|
uint256 tokensDeposited,
|
|
uint256 getId,
|
|
uint256 setId
|
|
);
|
|
|
|
event LogWithdraw(
|
|
address indexed token,
|
|
uint256 underlyingAmt,
|
|
uint256 sharedBurned,
|
|
address indexed to,
|
|
uint256 getId,
|
|
uint256 setId
|
|
);
|
|
|
|
event LogRedeem(
|
|
address indexed token,
|
|
uint256 shareAmt,
|
|
uint256 underlyingAmtReceieved,
|
|
address to,
|
|
uint256 getId,
|
|
uint256 setId
|
|
);
|
|
}
|