curio-wrapper-truffle/contracts/IERC223ReceivingContract.sol

7 lines
199 B
Solidity
Raw Normal View History

2023-02-05 21:35:43 +00:00
// SPDX-License-Identifier: AGPL-3.0-or-later
pragma solidity ^0.8.17;
interface IERC223ReceivingContract {
function tokenFallback(address _from, uint256 _value, bytes memory _data) external;
}