-
Notifications
You must be signed in to change notification settings - Fork 50
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
feat(host): Add local key value store #189
Conversation
This stack of pull requests is managed by Graphite. Learn more about stacking. |
L2_CHAIN_ID_KEY => todo!(), | ||
L2_CHAIN_CONFIG_KEY => todo!(), | ||
L2_ROLLUP_CONFIG_KEY => todo!(), |
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'll need standard definitions of the rollup / chain configuration per-chain. Might actually be time to make those superchain-registry
bindings 🫠
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.
Let's open up a ticket for this so we track and just merge this as is for now to not block
Adds the `LocalKeyValueStore` and the `SplitKeyValueStore`, which routes request for local data to the in-memory configuration.
Overview
Adds the
LocalKeyValueStore
and theSplitKeyValueStore
, which routesrequest for local data to the in-memory configuration.