2015-06-09 08:59:44 +00:00
|
|
|
package api
|
|
|
|
|
|
|
|
const Personal_JS = `
|
2015-06-10 07:42:14 +00:00
|
|
|
web3._extend({
|
2015-06-09 08:59:44 +00:00
|
|
|
property: 'personal',
|
|
|
|
methods:
|
|
|
|
[
|
2015-06-10 07:42:14 +00:00
|
|
|
new web3._extend.Method({
|
2015-06-09 08:59:44 +00:00
|
|
|
name: 'newAccount',
|
|
|
|
call: 'personal_newAccount',
|
|
|
|
params: 1,
|
2015-07-06 11:08:08 +00:00
|
|
|
inputFormatter: [null],
|
|
|
|
outputFormatter: web3._extend.utils.toAddress
|
2015-06-09 08:59:44 +00:00
|
|
|
}),
|
2015-06-10 07:42:14 +00:00
|
|
|
new web3._extend.Method({
|
2015-06-09 08:59:44 +00:00
|
|
|
name: 'unlockAccount',
|
|
|
|
call: 'personal_unlockAccount',
|
|
|
|
params: 3,
|
2015-07-06 11:08:08 +00:00
|
|
|
inputFormatter: [null, null, null]
|
2015-06-09 08:59:44 +00:00
|
|
|
})
|
|
|
|
],
|
|
|
|
properties:
|
|
|
|
[
|
2015-06-10 09:29:52 +00:00
|
|
|
new web3._extend.Property({
|
2015-06-10 07:42:14 +00:00
|
|
|
name: 'listAccounts',
|
2015-07-06 11:08:08 +00:00
|
|
|
getter: 'personal_listAccounts'
|
2015-06-10 09:29:52 +00:00
|
|
|
})
|
2015-06-09 08:59:44 +00:00
|
|
|
]
|
|
|
|
});
|
|
|
|
`
|