mirror of
https://github.com/status-im/visual-identity.git
synced 2025-02-02 07:47:03 +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;
|
|
}
|