aboutsummaryrefslogtreecommitdiffstats
path: root/contracts/ens/contract/ENS.sol
diff options
context:
space:
mode:
Diffstat (limited to 'contracts/ens/contract/ENS.sol')
-rw-r--r--contracts/ens/contract/ENS.sol104
1 files changed, 18 insertions, 86 deletions
diff --git a/contracts/ens/contract/ENS.sol b/contracts/ens/contract/ENS.sol
index 47050c19d..5ab8c92b4 100644
--- a/contracts/ens/contract/ENS.sol
+++ b/contracts/ens/contract/ENS.sol
@@ -1,94 +1,26 @@
-pragma solidity ^0.4.0;
+pragma solidity >=0.4.24;
-import './AbstractENS.sol';
+interface ENS {
-/**
- * The ENS registry contract.
- */
-contract ENS is AbstractENS {
- struct Record {
- address owner;
- address resolver;
- uint64 ttl;
- }
+ // Logged when the owner of a node assigns a new owner to a subnode.
+ event NewOwner(bytes32 indexed node, bytes32 indexed label, address owner);
- mapping(bytes32=>Record) records;
+ // Logged when the owner of a node transfers ownership to a new account.
+ event Transfer(bytes32 indexed node, address owner);
- // Permits modifications only by the owner of the specified node.
- modifier only_owner(bytes32 node) {
- if (records[node].owner != msg.sender) throw;
- _;
- }
+ // Logged when the resolver for a node changes.
+ event NewResolver(bytes32 indexed node, address resolver);
- /**
- * Constructs a new ENS registrar.
- */
- function ENS() {
- records[0].owner = msg.sender;
- }
+ // Logged when the TTL of a node changes
+ event NewTTL(bytes32 indexed node, uint64 ttl);
- /**
- * Returns the address that owns the specified node.
- */
- function owner(bytes32 node) constant returns (address) {
- return records[node].owner;
- }
- /**
- * Returns the address of the resolver for the specified node.
- */
- function resolver(bytes32 node) constant returns (address) {
- return records[node].resolver;
- }
+ function setSubnodeOwner(bytes32 node, bytes32 label, address owner) external;
+ function setResolver(bytes32 node, address resolver) external;
+ function setOwner(bytes32 node, address owner) external;
+ function setTTL(bytes32 node, uint64 ttl) external;
+ function owner(bytes32 node) external view returns (address);
+ function resolver(bytes32 node) external view returns (address);
+ function ttl(bytes32 node) external view returns (uint64);
- /**
- * Returns the TTL of a node, and any records associated with it.
- */
- function ttl(bytes32 node) constant returns (uint64) {
- return records[node].ttl;
- }
-
- /**
- * Transfers ownership of a node to a new address. May only be called by the current
- * owner of the node.
- * @param node The node to transfer ownership of.
- * @param owner The address of the new owner.
- */
- function setOwner(bytes32 node, address owner) only_owner(node) {
- Transfer(node, owner);
- records[node].owner = owner;
- }
-
- /**
- * Transfers ownership of a subnode sha3(node, label) to a new address. May only be
- * called by the owner of the parent node.
- * @param node The parent node.
- * @param label The hash of the label specifying the subnode.
- * @param owner The address of the new owner.
- */
- function setSubnodeOwner(bytes32 node, bytes32 label, address owner) only_owner(node) {
- var subnode = sha3(node, label);
- NewOwner(node, label, owner);
- records[subnode].owner = owner;
- }
-
- /**
- * Sets the resolver address for the specified node.
- * @param node The node to update.
- * @param resolver The address of the resolver.
- */
- function setResolver(bytes32 node, address resolver) only_owner(node) {
- NewResolver(node, resolver);
- records[node].resolver = resolver;
- }
-
- /**
- * Sets the TTL for the specified node.
- * @param node The node to update.
- * @param ttl The TTL in seconds.
- */
- function setTTL(bytes32 node, uint64 ttl) only_owner(node) {
- NewTTL(node, ttl);
- records[node].ttl = ttl;
- }
-}
+} \ No newline at end of file