added personal API

This commit is contained in:
Bas van Kervel
2015-06-09 10:59:44 +02:00
committed by Bas van Kervel
parent 09d0d55fc5
commit 08d72a9245
5 changed files with 259 additions and 9 deletions

34
rpc/api/personal_js.go Normal file
View File

@ -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:
[
]
});
`