Crates.io | serp-example-ocw |
lib.rs | serp-example-ocw |
version | 0.1.0 |
source | src |
created_at | 2021-03-28 14:08:51.056703 |
updated_at | 2021-03-28 14:08:51.056703 |
description | FRAME based example pallet for offchain worker |
homepage | |
repository | https://github.com/JBA-Khalifa/serp-example-ocw |
max_upload_size | |
id | 374665 |
size | 43,361 |
The Serp Offchain Worker Example: A simple pallet demonstrating concepts, APIs and structures common to most offchain workers.
In this example we are going to build a very simplistic, naive and definitely NOT
production-ready oracle for JUSD/USD price.
DAI here represents JUSD, since JUSD is not yet listed in the market.
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