aboutsummaryrefslogtreecommitdiffstats
path: root/rpc/api/personal_js.go
diff options
context:
space:
mode:
authorBas van Kervel <bas@ethdev.com>2015-06-09 16:59:44 +0800
committerBas van Kervel <basvankervel@gmail.com>2015-06-11 20:01:41 +0800
commit08d72a9245ce6f1e11f84a6b59d66cb083bea9f9 (patch)
treeb265308ff4e6991be1ebdb74c4618759b30e22b4 /rpc/api/personal_js.go
parent09d0d55fc579701191ff34f38cc20b437ee23577 (diff)
downloadgo-tangerine-08d72a9245ce6f1e11f84a6b59d66cb083bea9f9.tar
go-tangerine-08d72a9245ce6f1e11f84a6b59d66cb083bea9f9.tar.gz
go-tangerine-08d72a9245ce6f1e11f84a6b59d66cb083bea9f9.tar.bz2
go-tangerine-08d72a9245ce6f1e11f84a6b59d66cb083bea9f9.tar.lz
go-tangerine-08d72a9245ce6f1e11f84a6b59d66cb083bea9f9.tar.xz
go-tangerine-08d72a9245ce6f1e11f84a6b59d66cb083bea9f9.tar.zst
go-tangerine-08d72a9245ce6f1e11f84a6b59d66cb083bea9f9.zip
added personal API
Diffstat (limited to 'rpc/api/personal_js.go')
-rw-r--r--rpc/api/personal_js.go34
1 files changed, 34 insertions, 0 deletions
diff --git a/rpc/api/personal_js.go b/rpc/api/personal_js.go
new file mode 100644
index 000000000..7fd9a2dea
--- /dev/null
+++ b/rpc/api/personal_js.go
@@ -0,0 +1,34 @@
+package api
+
+const Personal_JS = `
+web3.extend({
+ property: 'personal',
+ methods:
+ [
+ new web3.extend.Method({
+ name: 'listAccounts',
+ call: 'personal_listAccounts',
+ params: 0,
+ inputFormatter: [],
+ outputFormatter: function(obj) { return obj; }
+ }),
+ new web3.extend.Method({
+ name: 'newAccount',
+ call: 'personal_newAccount',
+ params: 1,
+ inputFormatter: [web3.extend.formatters.formatInputString],
+ outputFormatter: web3.extend.formatters.formatOutputString
+ }),
+ new web3.extend.Method({
+ name: 'unlockAccount',
+ call: 'personal_unlockAccount',
+ params: 3,
+ inputFormatter: [web3.extend.formatters.formatInputString,web3.extend.formatters.formatInputString,web3.extend.formatters.formatInputInt],
+ outputFormatter: web3.extend.formatters.formatOutputBool
+ })
+ ],
+ properties:
+ [
+ ]
+});
+`