@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 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 */) || config.plugins.includes("ensv2" /* ENSv2 */) || config.plugins.includes("efp" /* EFP */);
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 one of the '${"unigraph" /* Unigraph */}', '${"ensv2" /* ENSv2 */}', or '${"efp" /* EFP */}' plugins enabled.`
4436
+ reason: `The connected ENSNode's Config must have the '${"unigraph" /* Unigraph */}' plugin enabled.`
4438
4437
  };
4439
4438
  }
4440
4439
  function hasOmnigraphApiIndexingStatusSupport(indexingStatus) {