UNPKG

webu

Version:

IrChain JavaScript API, middleware to talk to a irchain node over RPC

115 lines (95 loc) 2.94 kB
/* This file is part of webu.js. webu.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. webu.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 webu.js. If not, see <http://www.gnu.org/licenses/>. */ /** * @file irc.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(webu) { this._requestManager = webu._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;