-
Notifications
You must be signed in to change notification settings - Fork 3
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
Start publishing AssociationChange events #413
base: 12-30-implement_subscriptions
Are you sure you want to change the base?
Start publishing AssociationChange events #413
Conversation
Warning This pull request is not mergeable via GitHub because a downstack PR is open. Once all requirements are satisfied, merge this PR as a stack on Graphite.
This stack of pull requests is managed by Graphite. Learn more about stacking. |
4231933
to
909ce38
Compare
8c36a8b
to
8af3e83
Compare
[][]byte{}, // TODO: Handle installations added | ||
[][]byte{}, // TODO: Handle installations revoked |
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.
What doesn't work without these pieces? Just that they aren't stored?
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.
No one is asking for a stream of all the installations added, but I started to stub it out so that we can at least choose to add it later.
TL;DR
Added Waku relay publishing for identity association changes.
What changed?
PublishIdentityUpdateResult
type to track changes in addresses and installationsPublishIdentityUpdate
to return detailed results about changesIdentityApi_SubscribeAssociationChangesServer
How to test?
TestPublishAssociationChanges
Why make this change?
To enable real-time notifications of identity association changes through the Waku network, allowing clients to stay synchronized with updates to account addresses and installations.
Issues
#410