UNPKG

664 BJavaScriptView Raw
1// Copyright 2017-2023 @polkadot/types authors & contributors
2// SPDX-License-Identifier: Apache-2.0
3
4export const runtime = {
5 OffchainWorkerApi: [{
6 methods: {
7 offchain_worker: {
8 description: 'Starts the off-chain task for given block header.',
9 params: [{
10 name: 'header',
11 type: 'Header'
12 }],
13 type: 'Null'
14 }
15 },
16 version: 2
17 }, {
18 methods: {
19 offchain_worker: {
20 description: 'Starts the off-chain task for given block header.',
21 params: [{
22 name: 'number',
23 type: 'BlockNumber'
24 }],
25 type: 'Null'
26 }
27 },
28 version: 1
29 }]
30};
\No newline at end of file