tornado-contracts/contracts/Classic/Echoer.sol

10 lines
226 B
Solidity
Raw Normal View History

2024-03-30 09:10:48 +03:00
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;
contract Echoer {
event Echo(address indexed who, bytes data);
function echo(bytes calldata _data) external {
emit Echo(msg.sender, _data);
}
}