ens-usernames/contracts/token/ApprovalReceiver.sol
Barry Gitarts 516ea30fe6 Revert "add sendwithapproval method"
This reverts commit 1ea3b8b1490b919c20e66519a47796ee7bce0fe5.
2018-08-15 11:14:13 -04:00

6 lines
165 B
Solidity

pragma solidity ^0.4.11;
contract ApprovalReceiver {
function receiveApproval(address from, uint value, address tokenContract, bytes extraData) returns (bool);
}