UNPKG

955 BJavaScriptView Raw
1export const runtime = {
2 OffchainWorkerApi: [
3 {
4 methods: {
5 offchain_worker: {
6 description: 'Starts the off-chain task for given block header.',
7 params: [
8 {
9 name: 'header',
10 type: 'Header'
11 }
12 ],
13 type: 'Null'
14 }
15 },
16 version: 2
17 },
18 {
19 methods: {
20 offchain_worker: {
21 description: 'Starts the off-chain task for given block header.',
22 params: [
23 {
24 name: 'number',
25 type: 'BlockNumber'
26 }
27 ],
28 type: 'Null'
29 }
30 },
31 version: 1
32 }
33 ]
34};