mirror of
https://github.com/status-im/ens-usernames.git
synced 2025-03-04 03:51:10 +00:00
6 lines
165 B
Solidity
6 lines
165 B
Solidity
|
pragma solidity ^0.4.11;
|
||
|
|
||
|
contract ApprovalReceiver {
|
||
|
function receiveApproval(address from, uint value, address tokenContract, bytes extraData) returns (bool);
|
||
|
}
|