feat: replace attested bytes with typed MessageOrigin in delegate API#61
Merged
iduartgomez merged 2 commits intomainfrom Mar 12, 2026
Merged
feat: replace attested bytes with typed MessageOrigin in delegate API#61iduartgomez merged 2 commits intomainfrom
iduartgomez merged 2 commits intomainfrom
Conversation
Replace the raw `attested: Option<&'static [u8]>` parameter in DelegateInterface::process() with `origin: Option<MessageOrigin>`, where MessageOrigin::WebApp(ContractInstanceId) identifies the originating web application. Also removes the `app` field from ApplicationMessage — the origin is now conveyed through the process() parameter rather than being duplicated on every message. Closes #1498
This was referenced Mar 12, 2026
Breaking changes in this release: - DelegateInterface::process: attested → origin: Option<MessageOrigin> - ApplicationMessage: removed app field, new() takes only payload - New public type: MessageOrigin enum
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
attested: Option<&'static [u8]>with typedorigin: Option<MessageOrigin>inDelegateInterface::processapp: ContractInstanceIdfield fromApplicationMessageMessageOriginenum (WebApp(ContractInstanceId))Breaking Changes
DelegateInterface::processsignature:attested: Option<&'static [u8]>→origin: Option<MessageOrigin>ApplicationMessage::new(app, payload)→ApplicationMessage::new(payload)ApplicationMessage.appfield removedappfield removed fromApplicationMessagetableTest plan
test_delegate_requeste2e integration test passes (Docker/Linux)test_attested_contract_passed_to_delegatee2e integration test passes (Docker/Linux)Related PRs
Merge order: stdlib first → publish 0.3.0 → core → river