@ensnode/datasources 1.3.1 → 1.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -10,7 +10,7 @@ For example, the canonical ENS Namespace on mainnet includes:
10
10
  - The `threedns-optimism` and `threedns-base` Datasources documenting the 3DNS contracts on Optimism and Base, respectively
11
11
  - 🚧 Various offchain Datasources (e.g. `.cb.id`, `.uni.eth`)
12
12
 
13
- Each ENS namespace is logically independent and isolated from the others: for instance, the `sepolia` and `holesky` testnet namespaces manage a set of names that is entirely separate from the canonical `mainnet` namespace, and have distinct `basenames` and `lineanames` **Datasource**s defined.
13
+ Each ENS namespace is logically independent and isolated from the others: for instance, the `sepolia` testnet manages a set of names that is entirely separate from the canonical `mainnet` namespace, and have distinct `basenames` and `lineanames` **Datasource**s defined.
14
14
 
15
15
  The `ens-test-env` namespace describes the contracts deployed to an _Anvil_ chain for development and testing with the [ens-test-env](https://github.com/ensdomains/ens-test-env) tool.
16
16
 
@@ -48,8 +48,8 @@ import { getDatasource } from '@ensnode/datasources';
48
48
  // get ensroot datasource relative to mainnet ENS namespace
49
49
  const { chain, contracts } = getDatasource('mainnet', 'ensroot');
50
50
 
51
- // get ensroot datasource relative to holesky ENS namespace
52
- const { chain, contracts } = getDatasource('holesky', 'ensroot');
51
+ // get ensroot datasource relative to sepolia ENS namespace
52
+ const { chain, contracts } = getDatasource('sepolia', 'ensroot');
53
53
 
54
54
  // get threedns-base datasource relative to mainnet ENS namespace
55
55
  const { chain, contracts } = getDatasource('mainnet', 'threedns-base');
@@ -58,7 +58,6 @@ const { chain, contracts } = getDatasource('mainnet', 'threedns-base');
58
58
  The available `ENSNamespaceId`s are:
59
59
  - `mainnet`
60
60
  - `sepolia`
61
- - `holesky`
62
61
  - `ens-test-env` — Represents a local testing namespace running on an Anvil chain (chain id 1337) with deterministic configurations that deliberately start at block zero for rapid testing and development. See [ens-test-env](https://github.com/ensdomains/ens-test-env) for additional context.
63
62
 
64
63
  ### DatasourceName