1
0
mirror of https://github.com/dap-ps/discover.git synced 2025-02-01 12:05:08 +00:00
discover/contracts/token/ApproveAndCallFallBack.sol
2019-05-27 17:22:45 +02:00

11 lines
206 B
Solidity

pragma solidity ^0.5.2;
contract ApproveAndCallFallBack {
function receiveApproval(
address from,
uint256 _amount,
address _token,
bytes calldata _data) external;
}