mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 01:07:57 +00:00
22632efc5f
* Re-generate READMEs to fix doc links; set readme field in package manifests * Re-generate READMEs to fix doc links; set readme field in package manifests * Re-generate READMEs to fix doc links; set readme field in package manifests * Re-generate READMEs to fix doc links; set readme field in package manifests * Revert stuff that shouldn't have been committed * Revert stuff that shouldn't have been committed * Fix parent relative link generation * Manually remove this incorrect link for now.
26 lines
1.3 KiB
Markdown
26 lines
1.3 KiB
Markdown
# Offchain Worker Example Module
|
|
|
|
The Offchain Worker Example: A simple pallet demonstrating
|
|
concepts, APIs and structures common to most offchain workers.
|
|
|
|
Run `cargo doc --package pallet-example-offchain-worker --open` to view this module's
|
|
documentation.
|
|
|
|
- [`pallet_example_offchain_worker::Trait`](https://docs.rs/pallet-example-offchain-worker/latest/pallet_example_offchain_worker/trait.Trait.html)
|
|
- [`Call`](https://docs.rs/pallet-example-offchain-worker/latest/pallet_example_offchain_worker/enum.Call.html)
|
|
- [`Module`](https://docs.rs/pallet-example-offchain-worker/latest/pallet_example_offchain_worker/struct.Module.html)
|
|
|
|
|
|
## Overview
|
|
|
|
In this example we are going to build a very simplistic, naive and definitely NOT
|
|
production-ready oracle for BTC/USD price.
|
|
Offchain Worker (OCW) will be triggered after every block, fetch the current price
|
|
and prepare either signed or unsigned transaction to feed the result back on chain.
|
|
The on-chain logic will simply aggregate the results and store last `64` values to compute
|
|
the average price.
|
|
Additional logic in OCW is put in place to prevent spamming the network with both signed
|
|
and unsigned transactions, and custom `UnsignedValidator` makes sure that there is only
|
|
one unsigned transaction floating in the network.
|
|
|
|
License: Unlicense |