@parity/api
Advanced tools
Comparing version 2.1.11 to 2.1.12
@@ -17,6 +17,4 @@ 'use strict';var _createClass = function () {function defineProperties(target, props) {for (var i = 0; i < props.length; i++) {var descriptor = props[i];descriptor.enumerable = descriptor.enumerable || false;descriptor.configurable = true;if ("value" in descriptor) descriptor.writable = true;Object.defineProperty(target, descriptor.key, descriptor);}}return function (Constructor, protoProps, staticProps) {if (protoProps) defineProperties(Constructor.prototype, protoProps);if (staticProps) defineProperties(Constructor, staticProps);return Constructor;};}();function _classCallCheck(instance, Constructor) {if (!(instance instanceof Constructor)) {throw new TypeError("Cannot call a class as a function");}}function _possibleConstructorReturn(self, call) {if (!self) {throw new ReferenceError("this hasn't been initialised - super() hasn't been called");}return call && (typeof call === "object" || typeof call === "function") ? call : self;}function _inherits(subClass, superClass) {if (typeof superClass !== "function" && superClass !== null) {throw new TypeError("Super expression must either be null or a function, not " + typeof superClass);}subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } });if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass;} // Copyright 2015-2017 Parity Technologies (UK) Ltd. | ||
var EventEmitter = require('eventemitter3');var _require = | ||
var EventEmitter = require('eventemitter3'); | ||
require('../subscriptions'),Logging = _require.Logging; | ||
var METHOD_REQUEST_TOKEN = 'shell_requestNewToken';var | ||
@@ -174,8 +172,2 @@ | ||
return; | ||
}var | ||
data = this._messages[id].data; | ||
if (data) { | ||
Logging.send(data.method || data.api, data.params, { result: result }); | ||
} | ||
@@ -182,0 +174,0 @@ |
@@ -34,2 +34,10 @@ 'use strict';var _createClass = function () {function defineProperties(target, props) {for (var i = 0; i < props.length; i++) {var descriptor = props[i];descriptor.enumerable = descriptor.enumerable || false;descriptor.configurable = true;if ("value" in descriptor) descriptor.writable = true;Object.defineProperty(target, descriptor.key, descriptor);}}return function (Constructor, protoProps, staticProps) {if (protoProps) defineProperties(Constructor.prototype, protoProps);if (staticProps) defineProperties(Constructor, staticProps);return Constructor;};}();function _classCallCheck(instance, Constructor) {if (!(instance instanceof Constructor)) {throw new TypeError("Cannot call a class as a function");}}function _possibleConstructorReturn(self, call) {if (!self) {throw new ReferenceError("this hasn't been initialised - super() hasn't been called");}return call && (typeof call === "object" || typeof call === "function") ? call : self;}function _inherits(subClass, superClass) {if (typeof superClass !== "function" && superClass !== null) {throw new TypeError("Super expression must either be null or a function, not " + typeof superClass);}subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } });if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass;} // Copyright 2015-2017 Parity Technologies (UK) Ltd. | ||
}); | ||
} }, { key: 'allAccountsInfo', value: function allAccountsInfo( | ||
callback) { | ||
return this.addListener(this._api, 'parity_allAccountsInfo', function (error, data) { | ||
error ? | ||
callback(error) : | ||
callback(null, outAccountInfo(data)); | ||
}); | ||
} }, { key: 'hardwareAccountsInfo', value: function hardwareAccountsInfo( | ||
@@ -268,11 +276,2 @@ | ||
return this.addListener(this._api, 'parity_cidV0', callback, [inData(data)]); | ||
} | ||
// parity accounts API (only secure API or configured to be exposed) | ||
}, { key: 'allAccountsInfo', value: function allAccountsInfo(callback) { | ||
return this.addListener(this._api, 'parity_allAccountsInfo', function (error, data) { | ||
error ? | ||
callback(error) : | ||
callback(null, outAccountInfo(data)); | ||
}); | ||
} }, { key: 'getDappAddresses', value: function getDappAddresses( | ||
@@ -279,0 +278,0 @@ |
@@ -1,2 +0,2 @@ | ||
'use strict';var _createClass = function () {function defineProperties(target, props) {for (var i = 0; i < props.length; i++) {var descriptor = props[i];descriptor.enumerable = descriptor.enumerable || false;descriptor.configurable = true;if ("value" in descriptor) descriptor.writable = true;Object.defineProperty(target, descriptor.key, descriptor);}}return function (Constructor, protoProps, staticProps) {if (protoProps) defineProperties(Constructor.prototype, protoProps);if (staticProps) defineProperties(Constructor, staticProps);return Constructor;};}();function _classCallCheck(instance, Constructor) {if (!(instance instanceof Constructor)) {throw new TypeError("Cannot call a class as a function");}} // Copyright 2015-2017 Parity Technologies (UK) Ltd. | ||
'use strict';var _slicedToArray = function () {function sliceIterator(arr, i) {var _arr = [];var _n = true;var _d = false;var _e = undefined;try {for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) {_arr.push(_s.value);if (i && _arr.length === i) break;}} catch (err) {_d = true;_e = err;} finally {try {if (!_n && _i["return"]) _i["return"]();} finally {if (_d) throw _e;}}return _arr;}return function (arr, i) {if (Array.isArray(arr)) {return arr;} else if (Symbol.iterator in Object(arr)) {return sliceIterator(arr, i);} else {throw new TypeError("Invalid attempt to destructure non-iterable instance");}};}();var _createClass = function () {function defineProperties(target, props) {for (var i = 0; i < props.length; i++) {var descriptor = props[i];descriptor.enumerable = descriptor.enumerable || false;descriptor.configurable = true;if ("value" in descriptor) descriptor.writable = true;Object.defineProperty(target, descriptor.key, descriptor);}}return function (Constructor, protoProps, staticProps) {if (protoProps) defineProperties(Constructor.prototype, protoProps);if (staticProps) defineProperties(Constructor, staticProps);return Constructor;};}();function _classCallCheck(instance, Constructor) {if (!(instance instanceof Constructor)) {throw new TypeError("Cannot call a class as a function");}} // Copyright 2015-2017 Parity Technologies (UK) Ltd. | ||
// This file is part of Parity. | ||
@@ -49,2 +49,7 @@ | ||
// in the case of a pubsub compliant, don't use the engines | ||
if (this._api.isPubSub) { | ||
return; | ||
} | ||
this._updateSubscriptions = this._updateSubscriptions.bind(this); | ||
@@ -77,2 +82,15 @@ | ||
// use normal pub-sub as available | ||
if (_this2._api.isPubSub) { | ||
try {var _subscriptionName$spl = | ||
subscriptionName.split('_'),_subscriptionName$spl2 = _slicedToArray(_subscriptionName$spl, 2),fnSection = _subscriptionName$spl2[0],fnName = _subscriptionName$spl2[1]; | ||
resolve(_this2._api.pubsub[fnSection][fnName](callback)); | ||
} catch (error) { | ||
reject(error); | ||
} | ||
return; | ||
} | ||
var subscriptionId = _this2.subscriptions.length;var _values$subscriptionN = | ||
@@ -79,0 +97,0 @@ _this2.values[subscriptionName],error = _values$subscriptionN.error,data = _values$subscriptionN.data; |
{ | ||
"name": "@parity/api", | ||
"description": "The Parity Promise-based API library for interfacing with Ethereum over RPC", | ||
"version": "2.1.11", | ||
"version": "2.1.12", | ||
"main": "lib/index.js", | ||
@@ -6,0 +6,0 @@ "author": "Parity Team <admin@parity.io>", |
324266
5557