-
Notifications
You must be signed in to change notification settings - Fork 15
Use ENSRainbow public config within ENSIndexer public config #1705
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
c62872b
f16dfa1
ea1f7c3
bc516d1
ed0095c
4ff6743
04336fb
2078c69
5dd25f0
ac2c521
608c7f0
046af3c
45f9f7b
51df93b
5fd3bb3
ea1898b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| --- | ||
| "@ensnode/ensrainbow-sdk": minor | ||
| "ensindexer": minor | ||
| "@docs/ensnode": minor | ||
| "ensadmin": minor | ||
| "ensapi": minor | ||
| --- | ||
|
|
||
| Altered code references accordingly to the updated `EnsIndexerPublicConfig` data model. |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| --- | ||
| "@ensnode/ensnode-sdk": minor | ||
| --- | ||
|
|
||
| Added `ensRainbowPublicConfig` field to `EnsIndexerPublicConfig`. |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -86,7 +86,7 @@ The response includes several important configuration categories: | |
| functionality | ||
| - **Plugins**: Activated plugins | ||
| - **ENSIndexer Version Information**: Node.js version, Ponder framework version, | ||
| ENSRainbow version and schema details, ENSDb version, ENSIndexer version, [ENS Normalize version](https://www.npmjs.com/package/@adraffy/ens-normalize) | ||
| ENSRainbow public config, ENSDb version, ENSIndexer version, [ENS Normalize version](https://www.npmjs.com/package/@adraffy/ens-normalize) | ||
|
|
||
| ### Example response | ||
|
|
||
|
|
@@ -118,12 +118,15 @@ The response includes several important configuration categories: | |
| ], | ||
| "versionInfo": { | ||
| "nodejs": "22.18.0", | ||
| "ponder": "0.11.43", | ||
| "ensDb": "0.35.0", | ||
| "ensIndexer": "0.35.0", | ||
| "ponder": "0.16.1", | ||
| "ensDb": "1.5.1", | ||
| "ensIndexer": "1.5.1", | ||
| "ensNormalize": "1.11.1", | ||
| "ensRainbow": "0.34.0", | ||
| "ensRainbowSchema": 3 | ||
| "ensRainbowPublicConfig": { | ||
| "version": "1.5.1", | ||
| "labelSet": { "labelSetId": "subgraph", "highestLabelSetVersion": 0 }, | ||
| "recordsCount": 133856894 | ||
| } | ||
tk-o marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| } | ||
| } | ||
|
Comment on lines
119
to
131
|
||
| ``` | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We present extra info now that we have access to it 👍