s1-m0leCoin/m0lecoin-eth-contracts/contracts/ITokenReceiver.sol

12 lines
248 B
Solidity
Raw Normal View History

2022-11-18 09:03:05 +01:00
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
contract ITokenReceiver {
event TokensReceived(string message);
function tokensReceived() virtual external {
emit TokensReceived("Tokens received!");
}
}