From f0cc3ff4158527507ae70572c7af6f01d699e95d Mon Sep 17 00:00:00 2001 From: Wil Wade Date: Mon, 9 Mar 2020 16:08:34 -0400 Subject: [PATCH] Update Readme to remove references to PublicResolver (#349) PublicResolver and other resolvers are no longer in this package. They have been moved to https://github.com/ensdomains/resolvers so we should not reference them in the Readme except for the link to the new repo. --- README.md | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/README.md b/README.md index a73ac3c1..f301fdda 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,6 @@ import { HashRegistrar, Migrations, Registrar, - Resolver, ReverseRegistrar, TestRegistrar } from '@ensdomains/ens' @@ -47,10 +46,6 @@ Implementation of a registrar based on second-price blind auctions and funds hel 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. -## PublicResolver.sol - -Simple resolver implementation that allows the owner of any domain to configure how its name should resolve. One deployment of this contract allows any number of people to use it, by setting it as their resolver in the registry. - # ENS Registry interface 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). @@ -98,7 +93,7 @@ ENS.lll.bin was generated with the following command, using the lllc packaged wi The files in the abi directory were generated with the following command: - $ solc --abi -o abi AbstractENS.sol FIFSRegistrar.sol HashRegistrarSimplified.sol PublicResolver.sol + $ solc --abi -o abi AbstractENS.sol FIFSRegistrar.sol HashRegistrarSimplified.sol # Getting started