-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Migrate pallet-example-offchain-worker to TransactionExtension API #10716
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
gui1117
merged 15 commits into
paritytech:master
from
RomarQ:romarq/migrate-offchain-worker-to-tx-extension
Jan 21, 2026
Merged
Changes from 3 commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
05a3080
Migrate pallet-example-offchain-worker to TransactionExtension API
RomarQ 78b4e42
Fix incorrect documentation references in README
RomarQ 0c154b2
fix pr doc
RomarQ 0cc992a
Address PR review feedback
RomarQ 0c67460
Address PR review feedback
RomarQ d5b040b
align naming
RomarQ edd6981
fix formatting
RomarQ 1e9e487
align naming
RomarQ ad0ed6f
improve tests
RomarQ ced11f5
add integrity test
RomarQ 4e43026
address remarks
RomarQ ff754f6
Merge branch 'master' into romarq/migrate-offchain-worker-to-tx-exten…
RomarQ d43d1bc
Merge branch 'master' into romarq/migrate-offchain-worker-to-tx-exten…
RomarQ ab10598
Merge branch 'master' into romarq/migrate-offchain-worker-to-tx-exten…
RomarQ 18b952d
Merge branch 'master' into romarq/migrate-offchain-worker-to-tx-exten…
RomarQ File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,21 @@ | ||
| title: Migrate `pallet-example-offchain-worker` to use `TransactionExtension` API | ||
|
|
||
| doc: | ||
| - audience: Runtime Dev | ||
| description: |- | ||
| Migrates `pallet-example-offchain-worker` from the deprecated `ValidateUnsigned` trait | ||
| to the modern `TransactionExtension` API using the `#[pallet::authorize]` attribute. | ||
|
|
||
| This change demonstrates how to validate unsigned transactions using the new approach, | ||
| which provides better composability and flexibility for transaction validation. | ||
|
|
||
| The pallet now uses `#[pallet::authorize]` on unsigned transaction calls to validate: | ||
| - Block number is within the expected window | ||
| - Price data is valid | ||
| - For signed payloads, signature verification using the authority's public key | ||
|
|
||
| This serves as a reference example for other pallets migrating away from `ValidateUnsigned`. | ||
|
|
||
| crates: | ||
| - name: pallet-example-offchain-worker | ||
| bump: major |
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
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
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.