56 lines
1.2 KiB
Go
56 lines
1.2 KiB
Go
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.inputBlockNumberFormatter]
|
|
}),
|
|
new web3._extend.Method({
|
|
name: 'getBlockRlp',
|
|
call: 'debug_getBlockRlp',
|
|
params: 1,
|
|
inputFormatter: [web3._extend.formatters.inputBlockNumberFormatter]
|
|
}),
|
|
new web3._extend.Method({
|
|
name: 'setHead',
|
|
call: 'debug_setHead',
|
|
params: 1,
|
|
inputFormatter: [web3._extend.formatters.inputBlockNumberFormatter]
|
|
}),
|
|
new web3._extend.Method({
|
|
name: 'processBlock',
|
|
call: 'debug_processBlock',
|
|
params: 1,
|
|
inputFormatter: [web3._extend.formatters.inputBlockNumberFormatter]
|
|
}),
|
|
new web3._extend.Method({
|
|
name: 'seedHash',
|
|
call: 'debug_seedHash',
|
|
params: 1,
|
|
inputFormatter: [web3._extend.formatters.inputBlockNumberFormatter]
|
|
}),
|
|
new web3._extend.Method({
|
|
name: 'dumpBlock',
|
|
call: 'debug_dumpBlock',
|
|
params: 1,
|
|
inputFormatter: [web3._extend.formatters.inputBlockNumberFormatter]
|
|
}),
|
|
new web3._extend.Method({
|
|
name: 'metrics',
|
|
call: 'debug_metrics',
|
|
params: 1,
|
|
inputFormatter: [null]
|
|
})
|
|
],
|
|
properties:
|
|
[
|
|
]
|
|
});
|
|
`
|