aboutsummaryrefslogblamecommitdiffstats
path: root/rpc/api/net_js.go
blob: 1677d9fa6454fd970c447c653eb98a6b126331b5 (plain) (tree)
1
2
3
4
5
6
7
8


                
              


                            
                                         


                                            

                                                                                 
                   
                                         



                                              
                                                                                   



                   
                                           

                                                
                                                                                 
                   
                                           

                                                
                                                                     









                                                                                   



                  
package api

const Net_JS = `
web3._extend({
    property: 'network',
    methods:
    [
        new web3._extend.Method({
            name: 'addPeer',
            call: 'net_addPeer',
            params: 1,
            inputFormatter: [web3._extend.utils.formatInputString],
            outputFormatter: web3._extend.formatters.formatOutputBool
        }),
        new web3._extend.Method({
            name: 'getPeerCount',
            call: 'net_peerCount',
            params: 0,
            inputFormatter: [],
            outputFormatter: web3._extend.formatters.formatOutputString
        })
    ],
    properties:
    [
        new web3._extend.Property({
            name: 'listening',
            getter: 'net_listening',
            outputFormatter: web3._extend.formatters.formatOutputBool
        }),
        new web3._extend.Property({
            name: 'peerCount',
            getter: 'net_peerCount',
            outputFormatter: web3._extend.utils.toDecimal
        }),
        new web3._extend.Property({
            name: 'peers',
            getter: 'net_peers',
            outputFormatter: function(obj) { return obj; }
        }),
        new web3._extend.Property({
            name: 'version',
            getter: 'net_version',
            outputFormatter: web3._extend.formatters.formatOutputString
        })
    ]
});
`