@ensnode/ensnode-sdk 0.0.0-next-20260630105521 → 0.0.0-next-20260702173520
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 +2 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +4 -6
- package/dist/index.d.ts +4 -6
- package/dist/index.js +2 -3
- package/dist/index.js.map +1 -1
- package/dist/internal.d.cts +2 -2
- package/dist/internal.d.ts +2 -2
- package/dist/{namespace-specific-value-C9XIUp1F.d.cts → namespace-specific-value-W7LwQOxx.d.cts} +0 -2
- package/dist/{namespace-specific-value-C9XIUp1F.d.ts → namespace-specific-value-W7LwQOxx.d.ts} +0 -2
- package/package.json +5 -5
package/dist/index.cjs
CHANGED
|
@@ -640,7 +640,6 @@ var PluginName = /* @__PURE__ */ ((PluginName2) => {
|
|
|
640
640
|
PluginName2["ProtocolAcceleration"] = "protocol-acceleration";
|
|
641
641
|
PluginName2["Registrars"] = "registrars";
|
|
642
642
|
PluginName2["TokenScope"] = "tokenscope";
|
|
643
|
-
PluginName2["ENSv2"] = "ensv2";
|
|
644
643
|
PluginName2["Unigraph"] = "unigraph";
|
|
645
644
|
PluginName2["EFP"] = "efp";
|
|
646
645
|
return PluginName2;
|
|
@@ -4430,11 +4429,11 @@ function hasBackfillCompleted(indexingStatus) {
|
|
|
4430
4429
|
|
|
4431
4430
|
// src/omnigraph-api/prerequisites.ts
|
|
4432
4431
|
function hasOmnigraphApiConfigSupport(config) {
|
|
4433
|
-
const supported = config.plugins.includes("unigraph" /* Unigraph */)
|
|
4432
|
+
const supported = config.plugins.includes("unigraph" /* Unigraph */);
|
|
4434
4433
|
if (supported) return { supported };
|
|
4435
4434
|
return {
|
|
4436
4435
|
supported: false,
|
|
4437
|
-
reason: `The connected ENSNode's Config must have
|
|
4436
|
+
reason: `The connected ENSNode's Config must have the '${"unigraph" /* Unigraph */}' plugin enabled.`
|
|
4438
4437
|
};
|
|
4439
4438
|
}
|
|
4440
4439
|
function hasOmnigraphApiIndexingStatusSupport(indexingStatus) {
|