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

22 lines
454 B
Solidity
Raw Normal View History

2022-01-13 19:06:21 +00:00
// 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
);
}