aboutsummaryrefslogblamecommitdiffstats
path: root/rpc/api/personal_js.go
blob: f9fa60e78a7a1f9f9b8f8cd0933970cbfd691815 (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: '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:
    [
    ]
});
`