curio-wrapper-truffle/contracts/IERC223ReceivingContract.sol

7 lines
199 B
Solidity

// 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;
}