-
Notifications
You must be signed in to change notification settings - Fork 17
feat(ensrainbow): enhance entrypoint command with eager public config and mismatch handling #2037
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
Merged
djstrong
merged 8 commits into
main
from
2020-allow-ensrainbow-clients-to-fetch-ensrainbowpublicconfig-as-soon-as-possible
May 4, 2026
Merged
Changes from 1 commit
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
6b07e67
feat(ensrainbow): enhance entrypoint command with eager public config…
djstrong 582aecd
feat(ensrainbow): enable immediate public config availability and enh…
djstrong 404e0eb
refactor(ensrainbow): update API response structure to include versio…
djstrong cb2fdde
refactor(ensrainbow): improve exit handling in entrypoint command
djstrong 4c838e0
docs(ensrainbow): clarify API response structure for serverLabelSet f…
djstrong 012615c
refactor(ensrainbow): update exit function type and enhance public co…
djstrong 2183732
refactor(public-config-builder): remove readiness hook and simplify c…
djstrong 3aadc33
refactor(ensrainbow): enhance exit hook handling in entrypoint command
djstrong File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,17 +1,31 @@ | ||
| import packageJson from "@/../package.json" with { type: "json" }; | ||
|
|
||
| import type { EnsRainbowVersionInfo } from "@ensnode/ensnode-sdk"; | ||
| import type { EnsRainbowServerLabelSet, EnsRainbowVersionInfo } from "@ensnode/ensnode-sdk"; | ||
| import type { EnsRainbow } from "@ensnode/ensrainbow-sdk"; | ||
|
|
||
| import type { DbConfig } from "./types"; | ||
|
|
||
| export function buildEnsRainbowPublicConfig(dbConfig: DbConfig): EnsRainbow.ENSRainbowPublicConfig { | ||
| /** | ||
| * Build an `EnsRainbowPublicConfig` from a known `EnsRainbowServerLabelSet`. | ||
| * | ||
| * Used by both: | ||
| * - the eager startup path (entrypoint command), where the label set comes from CLI/env args | ||
| * and the database has not yet been opened, and | ||
| * - the post-bootstrap path, where the label set comes from the opened database. | ||
| */ | ||
| export function buildEnsRainbowPublicConfigFromLabelSet( | ||
| serverLabelSet: EnsRainbowServerLabelSet, | ||
| ): EnsRainbow.ENSRainbowPublicConfig { | ||
| const versionInfo = { | ||
| ensRainbow: packageJson.version, | ||
| } satisfies EnsRainbowVersionInfo; | ||
|
|
||
| return { | ||
| serverLabelSet: dbConfig.serverLabelSet, | ||
| serverLabelSet, | ||
| versionInfo, | ||
| }; | ||
| } | ||
|
|
||
| export function buildEnsRainbowPublicConfig(dbConfig: DbConfig): EnsRainbow.ENSRainbowPublicConfig { | ||
| return buildEnsRainbowPublicConfigFromLabelSet(dbConfig.serverLabelSet); | ||
| } |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.