UNPKG

web3quorum

Version:

Ethereum JavaScript API, middleware to talk to a ethereum node over RPC

116 lines (95 loc) 2.89 kB
/* 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 <http://www.gnu.org/licenses/>. */ /** * @file eth.js * @author Marek Kotewicz <marek@ethdev.com> * @author Fabian Vogelsteller <fabian@ethdev.com> * @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 importRawKey = new Method({ name: 'importRawKey', call: 'personal_importRawKey', params: 2 }); var sign = new Method({ name: 'sign', call: 'personal_sign', params: 3, inputFormatter: [null, formatters.inputAddressFormatter, null] }); var ecRecover = new Method({ name: 'ecRecover', call: 'personal_ecRecover', params: 2 }); var unlockAccount = new Method({ name: 'unlockAccount', call: 'personal_unlockAccount', params: 3, inputFormatter: [formatters.inputAddressFormatter, null, null] }); var sendTransaction = new Method({ name: 'sendTransaction', call: 'personal_sendTransaction', params: 2, inputFormatter: [formatters.inputTransactionFormatter, null] }); var lockAccount = new Method({ name: 'lockAccount', call: 'personal_lockAccount', params: 1, inputFormatter: [formatters.inputAddressFormatter] }); return [ newAccount, importRawKey, unlockAccount, ecRecover, sign, sendTransaction, lockAccount ]; }; var properties = function () { return [ new Property({ name: 'listAccounts', getter: 'personal_listAccounts' }) ]; }; module.exports = Personal;