Show the crate…

1 stable release

2.0.0 Apr 5, 2021
0.0.0 Mar 5, 2021

#71 in #tetcore

Download history 5/week @ 2023-12-11 6/week @ 2023-12-18 1/week @ 2023-12-25 33/week @ 2024-01-08 3/week @ 2024-01-15 17/week @ 2024-02-12 24/week @ 2024-02-19 40/week @ 2024-02-26 24/week @ 2024-03-04 19/week @ 2024-03-11 27/week @ 2024-03-18

115 downloads per month
Used in 23 crates (2 directly)

GPL-3.0-or-later…

1.5MB
32K SLoC

Tetcore offchain workers.

The offchain workers is a special function of the runtime that gets executed after block is imported. During execution it's able to asynchronously submit extrinsics that will either be propagated to other nodes or added to the next block produced by the node as unsigned transactions.

Offchain workers can be used for computation-heavy tasks that are not feasible for execution during regular block processing. It can either be tasks that no consensus is required for, or some form of consensus over the data can be built on-chain for instance via:

  1. Challenge period for incorrect computations
  2. Majority voting for results
  3. etc

License: GPL-3.0-or-later WITH Classpath-exception-2.0


lib.rs:

Tetcore offchain workers.

The offchain workers is a special function of the runtime that gets executed after block is imported. During execution it's able to asynchronously submit extrinsics that will either be propagated to other nodes or added to the next block produced by the node as unsigned transactions.

Offchain workers can be used for computation-heavy tasks that are not feasible for execution during regular block processing. It can either be tasks that no consensus is required for, or some form of consensus over the data can be built on-chain for instance via:

  1. Challenge period for incorrect computations
  2. Majority voting for results
  3. etc

Dependencies

~39–56MB
~1M SLoC