aboutsummaryrefslogtreecommitdiffstats
path: root/rpc/api/debug_js.go
blob: 43c545b2a976c615091f877fd0f7343feaafbcde (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
package api

const Debug_JS = `
web3.extend({
    property: 'debug',
    methods:
    [
        new web3.extend.Method({
            name: 'printBlock',
            call: 'debug_printBlock',
            params: 1,
            inputFormatter: [web3.extend.formatters.formatInputInt],
            outputFormatter: web3.extend.formatters.formatOutputString
        }),
        new web3.extend.Method({
            name: 'getBlockRlp',
            call: 'debug_getBlockRlp',
            params: 1,
            inputFormatter: [web3.extend.formatters.formatInputInt],
            outputFormatter: web3.extend.formatters.formatOutputString
        }),
        new web3.extend.Method({
            name: 'setHead',
            call: 'debug_setHead',
            params: 1,
            inputFormatter: [web3.extend.formatters.formatInputInt],
            outputFormatter: web3.extend.formatters.formatOutputBool
        }),
        new web3.extend.Method({
            name: 'processBlock',
            call: 'debug_processBlock',
            params: 1,
            inputFormatter: [web3.extend.formatters.formatInputInt],
            outputFormatter: function(obj) { return obj; }
        }),
        new web3.extend.Method({
            name: 'seedHash',
            call: 'debug_seedHash',
            params: 1,
            inputFormatter: [web3.extend.formatters.formatInputInt],
            outputFormatter: web3.extend.formatters.formatOutputString
        })
    ],
    properties:
    [
    ]
});
`