@ensnode/ensnode-sdk 0.0.0-next-20260630105521 → 0.0.0-next-20260702165053

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
@@ -4430,11 +4430,11 @@ function hasBackfillCompleted(indexingStatus) {
4430
4430
 
4431
4431
  // src/omnigraph-api/prerequisites.ts
4432
4432
  function hasOmnigraphApiConfigSupport(config) {
4433
- const supported = config.plugins.includes("unigraph" /* Unigraph */) || config.plugins.includes("ensv2" /* ENSv2 */) || config.plugins.includes("efp" /* EFP */);
4433
+ const supported = config.plugins.includes("unigraph" /* Unigraph */) || config.plugins.includes("ensv2" /* ENSv2 */);
4434
4434
  if (supported) return { supported };
4435
4435
  return {
4436
4436
  supported: false,
4437
- reason: `The connected ENSNode's Config must have one of the '${"unigraph" /* Unigraph */}', '${"ensv2" /* ENSv2 */}', or '${"efp" /* EFP */}' plugins enabled.`
4437
+ reason: `The connected ENSNode's Config must have one of the '${"unigraph" /* Unigraph */}' or '${"ensv2" /* ENSv2 */}' plugins enabled.`
4438
4438
  };
4439
4439
  }
4440
4440
  function hasOmnigraphApiIndexingStatusSupport(indexingStatus) {