mirror of
https://github.com/Instadapp/dsa-connectors.git
synced 2024-07-29 22:37:00 +00:00
22 lines
453 B
Solidity
22 lines
453 B
Solidity
//SPDX-License-Identifier: MIT
|
|
pragma solidity ^0.7.0;
|
|
|
|
contract Events {
|
|
event LogDepositERC1155(
|
|
address indexed erc1155,
|
|
address from,
|
|
uint256 tokenId,
|
|
uint256 amount,
|
|
uint256 getId,
|
|
uint256 setId
|
|
);
|
|
event LogWithdrawERC1155(
|
|
address indexed erc1155,
|
|
uint256 tokenId,
|
|
address indexed to,
|
|
uint256 amount,
|
|
uint256 getId,
|
|
uint256 setId
|
|
);
|
|
}
|