added net API
This commit is contained in:
		
				
					committed by
					
						 Bas van Kervel
						Bas van Kervel
					
				
			
			
				
	
			
			
			
						parent
						
							4b9b633dfe
						
					
				
				
					commit
					d2a87f6f72
				
			
							
								
								
									
										44
									
								
								rpc/api/net_js.go
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										44
									
								
								rpc/api/net_js.go
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,44 @@ | ||||
| package api | ||||
|  | ||||
| const Net_JS = ` | ||||
| web3.extend({ | ||||
| 	property: 'network', | ||||
| 	methods: | ||||
| 	[ | ||||
| 		new web3.extend.Method({ | ||||
| 			name: 'id', | ||||
| 			call: 'net_id', | ||||
| 			params: 0, | ||||
| 			inputFormatter: [], | ||||
| 			outputFormatter: web3.extend.formatters.formatOutputString | ||||
| 		}), | ||||
| 		new web3.extend.Method({ | ||||
| 			name: 'getPeerCount', | ||||
| 			call: 'net_peerCount', | ||||
| 			params: 0, | ||||
| 			inputFormatter: [], | ||||
| 			outputFormatter: web3.extend.formatters.formatOutputString | ||||
| 		}), | ||||
| 		new web3.extend.Method({ | ||||
| 			name: 'peers', | ||||
| 			call: 'net_peers', | ||||
| 			params: 0, | ||||
| 			inputFormatter: [], | ||||
| 			outputFormatter: function(obj) { return obj; } | ||||
| 		}) | ||||
| 	], | ||||
| 	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 | ||||
| 		}) | ||||
| 	] | ||||
| }); | ||||
| ` | ||||
		Reference in New Issue
	
	Block a user