aboutsummaryrefslogblamecommitdiffstats
path: root/rpc/api/personal_js.go
blob: 66014cc02de9c06f5087ed1ca52183c6620e9f98 (plain) (tree)
1
2
3
4
5
6
7
8


                     
              


                             
                                         


                                                    

                                                                     
                   
                                         


                                                       
                                                          



                   
                                           
                                             
                                                       
                  


         
package api

const Personal_JS = `
web3._extend({
    property: 'personal',
    methods:
    [
        new web3._extend.Method({
            name: 'newAccount',
            call: 'personal_newAccount',
            params: 1,
            inputFormatter: [null],
            outputFormatter: web3._extend.utils.toAddress
        }),
        new web3._extend.Method({
            name: 'unlockAccount',
            call: 'personal_unlockAccount',
            params: 3,
            inputFormatter: [null, null, null]
        })
    ],
    properties:
    [
        new web3._extend.Property({
            name: 'listAccounts',
            getter: 'personal_listAccounts'
        })
    ]
});
`