relayer-registry/contracts/Echoer.sol

12 lines
212 B
Solidity
Raw Normal View History

2020-10-07 11:17:19 +02:00
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.12;
contract Echoer {
event Echo(address indexed who, bytes data);
function echo(bytes calldata data) external {
emit Echo(msg.sender, data);
}
}