dsa-connectors/contracts/fantom/connectors/basic-ERC1155/events.sol

22 lines
453 B
Solidity
Raw Normal View History

2022-03-22 14:58:59 +00:00
//SPDX-License-Identifier: MIT
2022-02-10 18:38:52 +00:00
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
);
}