You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
-13
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,6 @@ import {
22
22
ENS,
23
23
ENSRegistry,
24
24
FIFSRegistrar,
25
-
HashRegistrar,
26
25
Migrations,
27
26
Registrar,
28
27
ReverseRegistrar,
@@ -38,14 +37,6 @@ Implementation of the ENS Registry, the central contract used to look up resolve
38
37
39
38
Implementation of a simple first-in-first-served registrar, which issues (sub-)domains to the first account to request them.
40
39
41
-
## HashRegistrar.sol
42
-
43
-
Implementation of a registrar based on second-price blind auctions and funds held on deposit, with a renewal process that weights renewal costs according to the change in mean price of registering a domain. Largely untested!
44
-
45
-
## HashRegistrarSimplified.sol
46
-
47
-
Simplified version of the above, with no support for renewals. This is the current proposal for interim registrar of the ENS system until a permanent registrar is decided on.
48
-
49
40
# ENS Registry interface
50
41
51
42
The ENS registry is a single central contract that provides a mapping from domain names to owners and resolvers, as described in [EIP 137](https://github.com/ethereum/EIPs/issues/137).
@@ -109,8 +100,4 @@ Deploy `ENS` and `FIFSRegistrar` to the private network, the deployment process
109
100
110
101
$ truffle migrate --network dev.fifs
111
102
112
-
alternatively, deploy the `HashRegistrar`:
113
-
114
-
$ truffle migrate --network dev.auction
115
-
116
103
Check the truffle [documentation](http://truffleframework.com/docs/) for more information.
0 commit comments