mirror of
https://github.com/status-im/hackathon-registration-dapp.git
synced 2025-01-12 22:04:09 +00:00
11 lines
200 B
Solidity
11 lines
200 B
Solidity
pragma solidity ^0.4.23;
|
|
|
|
interface ApproveAndCallFallBack {
|
|
function receiveApproval(
|
|
address from,
|
|
uint256 _amount,
|
|
address _token,
|
|
bytes _data
|
|
) external;
|
|
}
|