mirror of
https://github.com/status-im/ens-usernames.git
synced 2025-01-22 08:38:48 +00:00
cbfdd9cc72
* refactor ENSSubdomainRegistry * Rename contract * remove obsolete file * typo * Add legacy contract upgradability adaptor * refactor Dapp to use UsernameRegistrar contract * use reservedNames.js in usernameregistrar.spec.js * change array of merkle roots to single merkle root * load reserved words to deploy contract * reorganized contract methods * add withdraw methods for controller move excess funds & wrong ens nodes * add deployed MerkleProof addresses * include contract terms in the @notice of register * approve and call fix & solidity update * add approveAndCall support * clear subnode owner and resolver
6 lines
159 B
Solidity
6 lines
159 B
Solidity
pragma solidity ^0.4.11;
|
|
|
|
contract ApproveAndCallFallBack {
|
|
function receiveApproval(address from, uint256 _amount, address _token, bytes _data) public;
|
|
}
|