feat: add FileAddedV2 event handler to capture schema IDs#5
Closed
feat: add FileAddedV2 event handler to capture schema IDs#5
Conversation
This fixes the critical indexing gap where files with schema IDs were not being indexed properly. Changes: - Added FileAddedV2 event to DataRegistryImplementationV3 ABI - Created handleFileAddedV2V3 handler to capture schemaId parameter - Updated all subgraph manifests to listen for FileAddedV2 events - FileAddedV2 events start at block 4020468 on Moksha network This resolves the inconsistency between the blockchain explorer (which shows schema IDs) and the subgraph (which was showing schemaId: 0 for all files). Fixes: Files added with schema IDs after the contract upgrade are now properly indexed. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
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.
Summary
This PR fixes a critical indexing gap where files with schema IDs were not being indexed properly by the subgraph. The contract was upgraded to emit
FileAddedV2events (which include schemaId), but the subgraph was never updated to listen for these events.Problem
schemaId: 0for all filesSolution
FileAddedV2event definition to the DataRegistryImplementationV3 ABIhandleFileAddedV2V3handler to properly capture theschemaIdparameterFileAddedV2eventsFileAddedeventsTechnical Details
FileAddedV2events started at block 4020468 on Moksha networkschemaId: 0schemaIdvalues indexedTest Plan
npm run codegen)npm run build)Related Discussion
See Linear thread PRO-493 for context on the FileAddedV2 event addition.
🤖 Generated with Claude Code