diff options
Diffstat (limited to 'rpc/api/personal_js.go')
-rw-r--r-- | rpc/api/personal_js.go | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/rpc/api/personal_js.go b/rpc/api/personal_js.go new file mode 100644 index 000000000..463a2c7f5 --- /dev/null +++ b/rpc/api/personal_js.go @@ -0,0 +1,32 @@ +package api + +const Personal_JS = ` +web3._extend({ + property: 'personal', + methods: + [ + 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: + [ + new web3._extend.Property({ + name: 'listAccounts', + getter: 'personal_listAccounts', + outputFormatter: function(obj) { return obj; } + }) + ] +}); +` |