@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 +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -4
- package/dist/index.d.ts +2 -4
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +5 -5
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 */)
|
|
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 */}'
|
|
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) {
|