@ensnode/ensnode-sdk 1.4.0 → 1.5.1
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/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js.map +1 -1
- package/package.json +5 -5
package/dist/index.d.cts
CHANGED
|
@@ -637,6 +637,8 @@ declare const uint256ToHex32: (num: bigint) => Hex;
|
|
|
637
637
|
*
|
|
638
638
|
* Represents a unique identifier for a chain.
|
|
639
639
|
* Guaranteed to be a positive integer.
|
|
640
|
+
*
|
|
641
|
+
* Chain id standards are organized by the Ethereum Community @ https://github.com/ethereum-lists/chains
|
|
640
642
|
**/
|
|
641
643
|
type ChainId = number;
|
|
642
644
|
/**
|
|
@@ -1587,7 +1589,7 @@ declare function deserializeENSIndexerPublicConfig(maybeConfig: SerializedENSInd
|
|
|
1587
1589
|
* Determines if the provided `config` results in indexing behavior compatible with the legacy ENS
|
|
1588
1590
|
* Subgraph.
|
|
1589
1591
|
*
|
|
1590
|
-
* @see https://ensnode.io/docs/
|
|
1592
|
+
* @see https://ensnode.io/docs/concepts/what-is-the-ens-subgraph/
|
|
1591
1593
|
*/
|
|
1592
1594
|
declare function isSubgraphCompatible(config: Pick<ENSIndexerPublicConfig, "namespace" | "plugins" | "labelSet">): boolean;
|
|
1593
1595
|
|
package/dist/index.d.ts
CHANGED
|
@@ -637,6 +637,8 @@ declare const uint256ToHex32: (num: bigint) => Hex;
|
|
|
637
637
|
*
|
|
638
638
|
* Represents a unique identifier for a chain.
|
|
639
639
|
* Guaranteed to be a positive integer.
|
|
640
|
+
*
|
|
641
|
+
* Chain id standards are organized by the Ethereum Community @ https://github.com/ethereum-lists/chains
|
|
640
642
|
**/
|
|
641
643
|
type ChainId = number;
|
|
642
644
|
/**
|
|
@@ -1587,7 +1589,7 @@ declare function deserializeENSIndexerPublicConfig(maybeConfig: SerializedENSInd
|
|
|
1587
1589
|
* Determines if the provided `config` results in indexing behavior compatible with the legacy ENS
|
|
1588
1590
|
* Subgraph.
|
|
1589
1591
|
*
|
|
1590
|
-
* @see https://ensnode.io/docs/
|
|
1592
|
+
* @see https://ensnode.io/docs/concepts/what-is-the-ens-subgraph/
|
|
1591
1593
|
*/
|
|
1592
1594
|
declare function isSubgraphCompatible(config: Pick<ENSIndexerPublicConfig, "namespace" | "plugins" | "labelSet">): boolean;
|
|
1593
1595
|
|