aboutsummaryrefslogtreecommitdiffstats
path: root/rpc/api/debug_js.go
diff options
context:
space:
mode:
authorBas van Kervel <bas@ethdev.com>2015-06-09 15:48:18 +0800
committerBas van Kervel <basvankervel@gmail.com>2015-06-11 20:01:41 +0800
commit09d0d55fc579701191ff34f38cc20b437ee23577 (patch)
tree16f77a960c7428145961891b7f116e25dc6daf1b /rpc/api/debug_js.go
parentfaab931ce1282dea50c8fdf0577c42ee67f69828 (diff)
downloadgo-tangerine-09d0d55fc579701191ff34f38cc20b437ee23577.tar
go-tangerine-09d0d55fc579701191ff34f38cc20b437ee23577.tar.gz
go-tangerine-09d0d55fc579701191ff34f38cc20b437ee23577.tar.bz2
go-tangerine-09d0d55fc579701191ff34f38cc20b437ee23577.tar.lz
go-tangerine-09d0d55fc579701191ff34f38cc20b437ee23577.tar.xz
go-tangerine-09d0d55fc579701191ff34f38cc20b437ee23577.tar.zst
go-tangerine-09d0d55fc579701191ff34f38cc20b437ee23577.zip
added debug API
Diffstat (limited to 'rpc/api/debug_js.go')
-rw-r--r--rpc/api/debug_js.go48
1 files changed, 48 insertions, 0 deletions
diff --git a/rpc/api/debug_js.go b/rpc/api/debug_js.go
new file mode 100644
index 000000000..43c545b2a
--- /dev/null
+++ b/rpc/api/debug_js.go
@@ -0,0 +1,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:
+ [
+ ]
+});
+`