mirror of
https://github.com/dap-ps/discover.git
synced 2025-02-01 12:05:08 +00:00
11 lines
206 B
Solidity
11 lines
206 B
Solidity
pragma solidity ^0.5.2;
|
|
|
|
|
|
contract ApproveAndCallFallBack {
|
|
function receiveApproval(
|
|
address from,
|
|
uint256 _amount,
|
|
address _token,
|
|
bytes calldata _data) external;
|
|
}
|