/* This file is part of web3.js. web3.js is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. web3.js is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with web3.js. If not, see . */ /** * @file eth.js * @author Marek Kotewicz * @author Fabian Vogelsteller * @date 2015 */ "use strict"; var Method = require('../method'); var Property = require('../property'); var formatters = require('../formatters'); function Personal(web3) { this._requestManager = web3._requestManager; var self = this; methods().forEach(function(method) { method.attachToObject(self); method.setRequestManager(self._requestManager); }); properties().forEach(function(p) { p.attachToObject(self); p.setRequestManager(self._requestManager); }); } var methods = function () { var newAccount = new Method({ name: 'newAccount', call: 'personal_newAccount', params: 1, inputFormatter: [null] }); var unlockAccount = new Method({ name: 'unlockAccount', call: 'personal_unlockAccount', params: 3, inputFormatter: [formatters.inputAddressFormatter, null, null] }); var unlockAccountAndSendTransaction = new Method({ name: 'unlockAccountAndSendTransaction', // sendTransaction call: 'personal_signAndSendTransaction', // personal_sendTransaction params: 2, inputFormatter: [formatters.inputTransactionFormatter, null] }); var lockAccount = new Method({ name: 'lockAccount', call: 'personal_lockAccount', params: 1, inputFormatter: [formatters.inputAddressFormatter] }); return [ newAccount, unlockAccount, unlockAccountAndSendTransaction, lockAccount ]; }; var properties = function () { return [ new Property({ name: 'listAccounts', getter: 'personal_listAccounts' }) ]; }; module.exports = Personal;