| 
									
										
										
										
											2015-06-09 10:59:44 +02:00
										 |  |  | package api | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const Personal_JS = ` | 
					
						
							| 
									
										
										
										
											2015-06-10 09:42:14 +02:00
										 |  |  | web3._extend({ | 
					
						
							| 
									
										
										
										
											2015-06-09 10:59:44 +02:00
										 |  |  | 	property: 'personal', | 
					
						
							|  |  |  | 	methods: | 
					
						
							|  |  |  | 	[ | 
					
						
							| 
									
										
										
										
											2015-06-10 09:42:14 +02:00
										 |  |  | 		new web3._extend.Method({ | 
					
						
							| 
									
										
										
										
											2015-06-09 10:59:44 +02:00
										 |  |  | 			name: 'newAccount', | 
					
						
							|  |  |  | 			call: 'personal_newAccount', | 
					
						
							|  |  |  | 			params: 1, | 
					
						
							| 
									
										
										
										
											2015-06-10 09:42:14 +02:00
										 |  |  | 			inputFormatter: [web3._extend.formatters.formatInputString], | 
					
						
							|  |  |  | 			outputFormatter: web3._extend.formatters.formatOutputString | 
					
						
							| 
									
										
										
										
											2015-06-09 10:59:44 +02:00
										 |  |  | 		}), | 
					
						
							| 
									
										
										
										
											2015-06-10 09:42:14 +02:00
										 |  |  | 		new web3._extend.Method({ | 
					
						
							| 
									
										
										
										
											2015-06-09 10:59:44 +02:00
										 |  |  | 			name: 'unlockAccount', | 
					
						
							|  |  |  | 			call: 'personal_unlockAccount', | 
					
						
							|  |  |  | 			params: 3, | 
					
						
							| 
									
										
										
										
											2015-06-10 09:42:14 +02:00
										 |  |  | 			inputFormatter: [web3._extend.formatters.formatInputString,web3._extend.formatters.formatInputString,web3._extend.formatters.formatInputInt], | 
					
						
							|  |  |  | 			outputFormatter: web3._extend.formatters.formatOutputBool | 
					
						
							| 
									
										
										
										
											2015-06-09 10:59:44 +02:00
										 |  |  | 		}) | 
					
						
							|  |  |  | 	], | 
					
						
							|  |  |  | 	properties: | 
					
						
							|  |  |  | 	[ | 
					
						
							| 
									
										
										
										
											2015-06-10 11:29:52 +02:00
										 |  |  | 		new web3._extend.Property({ | 
					
						
							| 
									
										
										
										
											2015-06-10 09:42:14 +02:00
										 |  |  | 			name: 'listAccounts', | 
					
						
							| 
									
										
										
										
											2015-06-10 11:29:52 +02:00
										 |  |  | 			getter: 'personal_listAccounts', | 
					
						
							|  |  |  | 			outputFormatter: function(obj) { return obj; } | 
					
						
							|  |  |  | 		}) | 
					
						
							| 
									
										
										
										
											2015-06-09 10:59:44 +02:00
										 |  |  | 	] | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | ` |