feat(providers-static): add static provider crate with config#1948
Merged
Conversation
…ema generation Introduce a new provider type for serving pre-computed CSV datasets from object stores, following the same crate structure as existing providers (evm-rpc, firehose, solana). - Add `StaticProviderConfig` with object store root, cache size, and schema inference settings - Add `StaticProviderKind` zero-sized type with serde, schema, and string comparison impls - Add `gen` sub-crate for JSON schema generation via `gen_schema_provider` cfg flag - Update provider feature docs: rename from `provider-extractor-*` to `provider-*`, add status frontmatter - Register crate in workspace, monitoring logging filter, and justfile codegen tasks Signed-off-by: Lorenzo Delgado <lorenzo@edgeandnode.com>
Theodus
approved these changes
Mar 10, 2026
Member
Theodus
left a comment
There was a problem hiding this comment.
LGTM. Depending on how we expect this to evolve, we may want to name the dataset kind static-csv. But it can remain as just static if we expect that this provider might eventually support other formats.
Contributor
Author
The kind here refers to the "provider kind", and I think we can have a many "dataset kinds" to one "provider kind" relationship. Depending on how we define the dataset manifest details, we can have |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Introduce a new provider type for serving static datasets from object stores, following the same crate structure as existing providers (evm-rpc, firehose, solana).
StaticProviderConfigwith object store root, cache size, and schema inference settingsStaticProviderKindzero-sized type with serde, schema, and string comparison implsgensub-crate for JSON schema generation viagen_schema_providercfg flagprovider-extractor-*toprovider-*, add status frontmatter