mirror of
https://github.com/status-im/discover-dapps.git
synced 2025-01-31 21:05:28 +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;
|
|
}
|