-
Notifications
You must be signed in to change notification settings - Fork 262
[ETHEREUM-CONTRACTS] remove footgun from CFASuperAppBase #2043
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
Merged
Conversation
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
Changelog ReminderReminder to update the CHANGELOG.md for any of the modified packages in this PR.
|
9fd6502 to
5519053
Compare
hellwolf
reviewed
Oct 23, 2025
hellwolf
approved these changes
Oct 23, 2025
Contributor
Collaborator
Author
Contributor
XKCD Comic RelifLink: https://xkcd.com/2043 |
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.

What & Why
The CFA hook
afterAgreementTerminatedis invoked when a flow to the SuperApp or a flow from the SuperApp is deleted.The latter case is unexpected for many, because it exists only for the delete callback, not for the create and update callbacks.
For SuperApps creating outgoing flows and implementing this hook without being aware of it (e.g. not checking the sender argument), this creates the risk of unexpected states, unexpected state updates, and of jailing.
How
onFlowDeletedonly for deletion of incoming flows and remove thereceiverargument. This breaks existing code using it, which we want in order to make sure the change can't cause unnoticed behaviour change of such contracts.onOutFlowDeletedfor deletion of outgoing flows. This allows to specifically handle this case, e.g. to implement sticky streams (don't allow closing by reopening in the hook).Note: the change is breaking in the sense that code using it and updating the dependency needs to be changed.
Being just a library which is not used by the protocol itself, it's not breaking in the sense that deployed contracts change behaviour.