-
Notifications
You must be signed in to change notification settings - Fork 87
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(subgraph): As a user, I want the update Registry address on the Router to be indexed for the 4 registries #925
base: dev
Are you sure you want to change the base?
Conversation
…ate audit information
…reamline audit information handling
applied your chnages ,let me know if you need any changes |
…appings in YAML files
"@graphprotocol/graph-cli": "0.49.0 ", | ||
"@graphprotocol/graph-ts": "0.30.0 ", |
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.
Can you just revert the changes on these two lines?
network: linea | ||
source: | ||
abi: Router | ||
address: "0x5A5A30aB3d6A6DD3463512793C7c36E9B47615e8" |
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.
This is not the correct address (see here).
network: bsc-testnet | ||
source: | ||
abi: Router | ||
address: "0x4E797aD91EE5d467D878E71C65D564D5b2026bE9" |
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.
This is not the correct address (see here).
network: bsc | ||
source: | ||
abi: Router | ||
address: "0x4E797aD91EE5d467D878E71C65D564D5b2026bE9" |
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.
This is not the correct address (see here).
network: base-sepolia | ||
source: | ||
abi: Router | ||
address: "0x4E797aD91EE5d467D878E71C65D564D5b2026bE9" |
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.
This is not the correct address (see here).
source: | ||
abi: Router | ||
address: "0x4E797aD91EE5d467D878E71C65D564D5b2026bE9" | ||
startBlock: 34645879 |
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.
This is not the correct block number (see above)
source: | ||
abi: Router | ||
address: "0x4E797aD91EE5d467D878E71C65D564D5b2026bE9" | ||
startBlock: 32972749 |
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.
This is not the correct block number (see above)
source: | ||
abi: Router | ||
address: "0x4E797aD91EE5d467D878E71C65D564D5b2026bE9" | ||
startBlock: 7731130 |
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.
This is not the correct block number (see above)
source: | ||
abi: Router | ||
address: "0x4E797aD91EE5d467D878E71C65D564D5b2026bE9" | ||
startBlock: 1279337 |
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.
This is not the correct block number (see above)
source: | ||
abi: Router | ||
address: "0x4E797aD91EE5d467D878E71C65D564D5b2026bE9" | ||
startBlock: 160697387 |
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.
This is not the correct block number (see above)
Please use the correct addresses for all Router contracts(different for each network). |
Add Router Registry Updates Indexing
Description
Implements indexing functionality for registry address updates in the Router contract for all four registries (Attestation, Module, Portal, and Schema) to provide transparency on administrative actions.
Changes
RegistryUpdate
entity to track registry address changesAttestationRegistryUpdated
ModuleRegistryUpdated
PortalRegistryUpdated
SchemaRegistryUpdated
Technical Details
handleRegistryUpdate
to process all registry update eventsTesting
Documentation
The implementation allows querying registry updates with the following fields:
Closes #290