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