2018-06-13 22:39:39 +03:00
|
|
|
'use strict';
|
|
|
|
var __extends = (this && this.__extends) || (function () {
|
|
|
|
var extendStatics = Object.setPrototypeOf ||
|
|
|
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
|
|
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
|
|
|
return function (d, b) {
|
|
|
|
extendStatics(d, b);
|
|
|
|
function __() { this.constructor = d; }
|
|
|
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
|
|
};
|
|
|
|
})();
|
|
|
|
var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
|
if (mod && mod.__esModule) return mod;
|
|
|
|
var result = {};
|
|
|
|
if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];
|
|
|
|
result["default"] = mod;
|
|
|
|
return result;
|
|
|
|
};
|
|
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
|
// See: https://github.com/ethereum/wiki/wiki/JSON-RPC
|
|
|
|
var networks_1 = require("./networks");
|
2018-06-14 12:38:37 +03:00
|
|
|
var provider_1 = require("./provider");
|
2018-06-18 12:42:41 +03:00
|
|
|
var wallet_1 = require("../wallet/wallet");
|
2018-06-13 22:39:39 +03:00
|
|
|
var address_1 = require("../utils/address");
|
2018-06-17 23:47:28 +03:00
|
|
|
var bytes_1 = require("../utils/bytes");
|
2018-06-18 12:42:41 +03:00
|
|
|
var properties_1 = require("../utils/properties");
|
2018-06-13 22:39:39 +03:00
|
|
|
var utf8_1 = require("../utils/utf8");
|
|
|
|
var web_1 = require("../utils/web");
|
|
|
|
var errors = __importStar(require("../utils/errors"));
|
|
|
|
function timer(timeout) {
|
|
|
|
return new Promise(function (resolve) {
|
|
|
|
setTimeout(function () {
|
|
|
|
resolve();
|
|
|
|
}, timeout);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
function getResult(payload) {
|
|
|
|
if (payload.error) {
|
|
|
|
// @TODO: not any
|
|
|
|
var error = new Error(payload.error.message);
|
|
|
|
error.code = payload.error.code;
|
|
|
|
error.data = payload.error.data;
|
|
|
|
throw error;
|
|
|
|
}
|
|
|
|
return payload.result;
|
|
|
|
}
|
|
|
|
// Convert an ethers.js transaction into a JSON-RPC transaction
|
|
|
|
// - gasLimit => gas
|
|
|
|
// - All values hexlified
|
|
|
|
// - All numeric values zero-striped
|
2018-06-22 09:18:19 +03:00
|
|
|
// @TODO: Not any, a dictionary of string to strings
|
2018-06-13 22:39:39 +03:00
|
|
|
function hexlifyTransaction(transaction) {
|
|
|
|
var result = {};
|
|
|
|
// Some nodes (INFURA ropsten; INFURA mainnet is fine) don't like extra zeros.
|
|
|
|
['gasLimit', 'gasPrice', 'nonce', 'value'].forEach(function (key) {
|
|
|
|
if (transaction[key] == null) {
|
|
|
|
return;
|
|
|
|
}
|
2018-06-17 23:47:28 +03:00
|
|
|
var value = bytes_1.hexStripZeros(bytes_1.hexlify(transaction[key]));
|
2018-06-13 22:39:39 +03:00
|
|
|
if (key === 'gasLimit') {
|
|
|
|
key = 'gas';
|
|
|
|
}
|
|
|
|
result[key] = value;
|
|
|
|
});
|
|
|
|
['from', 'to', 'data'].forEach(function (key) {
|
|
|
|
if (transaction[key] == null) {
|
|
|
|
return;
|
|
|
|
}
|
2018-06-17 23:47:28 +03:00
|
|
|
result[key] = bytes_1.hexlify(transaction[key]);
|
2018-06-13 22:39:39 +03:00
|
|
|
});
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
exports.hexlifyTransaction = hexlifyTransaction;
|
|
|
|
function getLowerCase(value) {
|
|
|
|
if (value) {
|
|
|
|
return value.toLowerCase();
|
|
|
|
}
|
|
|
|
return value;
|
|
|
|
}
|
2018-06-18 12:42:41 +03:00
|
|
|
var JsonRpcSigner = /** @class */ (function (_super) {
|
|
|
|
__extends(JsonRpcSigner, _super);
|
2018-06-13 22:39:39 +03:00
|
|
|
function JsonRpcSigner(provider, address) {
|
2018-06-18 12:42:41 +03:00
|
|
|
var _this = _super.call(this) || this;
|
|
|
|
errors.checkNew(_this, JsonRpcSigner);
|
|
|
|
properties_1.defineReadOnly(_this, 'provider', provider);
|
2018-06-13 22:39:39 +03:00
|
|
|
// Statically attach to a given address
|
|
|
|
if (address) {
|
2018-06-18 12:42:41 +03:00
|
|
|
properties_1.defineReadOnly(_this, '_address', address);
|
2018-06-13 22:39:39 +03:00
|
|
|
}
|
2018-06-18 12:42:41 +03:00
|
|
|
return _this;
|
2018-06-13 22:39:39 +03:00
|
|
|
}
|
|
|
|
Object.defineProperty(JsonRpcSigner.prototype, "address", {
|
|
|
|
get: function () {
|
|
|
|
if (!this._address) {
|
|
|
|
errors.throwError('no sync sync address available; use getAddress', errors.UNSUPPORTED_OPERATION, { operation: 'address' });
|
|
|
|
}
|
|
|
|
return this._address;
|
|
|
|
},
|
|
|
|
enumerable: true,
|
|
|
|
configurable: true
|
|
|
|
});
|
|
|
|
JsonRpcSigner.prototype.getAddress = function () {
|
|
|
|
if (this._address) {
|
|
|
|
return Promise.resolve(this._address);
|
|
|
|
}
|
|
|
|
return this.provider.send('eth_accounts', []).then(function (accounts) {
|
|
|
|
if (accounts.length === 0) {
|
|
|
|
errors.throwError('no accounts', errors.UNSUPPORTED_OPERATION, { operation: 'getAddress' });
|
|
|
|
}
|
|
|
|
return address_1.getAddress(accounts[0]);
|
|
|
|
});
|
|
|
|
};
|
|
|
|
JsonRpcSigner.prototype.getBalance = function (blockTag) {
|
2018-06-18 12:42:41 +03:00
|
|
|
return this.provider.getBalance(this.getAddress(), blockTag);
|
2018-06-13 22:39:39 +03:00
|
|
|
};
|
|
|
|
JsonRpcSigner.prototype.getTransactionCount = function (blockTag) {
|
2018-06-18 12:42:41 +03:00
|
|
|
return this.provider.getTransactionCount(this.getAddress(), blockTag);
|
2018-06-13 22:39:39 +03:00
|
|
|
};
|
|
|
|
JsonRpcSigner.prototype.sendTransaction = function (transaction) {
|
|
|
|
var _this = this;
|
2018-06-18 12:42:41 +03:00
|
|
|
var tx = hexlifyTransaction(transaction);
|
|
|
|
if (tx.from == null) {
|
|
|
|
tx.from = this.getAddress().then(function (address) {
|
|
|
|
if (!address) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
return address.toLowerCase();
|
2018-06-13 22:39:39 +03:00
|
|
|
});
|
2018-06-18 12:42:41 +03:00
|
|
|
}
|
|
|
|
return properties_1.resolveProperties(tx).then(function (tx) {
|
2018-06-27 00:47:31 +03:00
|
|
|
return _this.provider.send('eth_sendTransaction', [tx]);
|
2018-06-13 22:39:39 +03:00
|
|
|
});
|
|
|
|
};
|
|
|
|
JsonRpcSigner.prototype.signMessage = function (message) {
|
|
|
|
var _this = this;
|
|
|
|
var data = ((typeof (message) === 'string') ? utf8_1.toUtf8Bytes(message) : message);
|
|
|
|
return this.getAddress().then(function (address) {
|
|
|
|
// https://github.com/ethereum/wiki/wiki/JSON-RPC#eth_sign
|
2018-06-17 23:47:28 +03:00
|
|
|
return _this.provider.send('eth_sign', [address.toLowerCase(), bytes_1.hexlify(data)]);
|
2018-06-13 22:39:39 +03:00
|
|
|
});
|
|
|
|
};
|
|
|
|
JsonRpcSigner.prototype.unlock = function (password) {
|
|
|
|
var provider = this.provider;
|
|
|
|
return this.getAddress().then(function (address) {
|
|
|
|
return provider.send('personal_unlockAccount', [address.toLowerCase(), password, null]);
|
|
|
|
});
|
|
|
|
};
|
|
|
|
return JsonRpcSigner;
|
2018-06-18 12:42:41 +03:00
|
|
|
}(wallet_1.Signer));
|
2018-06-13 22:39:39 +03:00
|
|
|
exports.JsonRpcSigner = JsonRpcSigner;
|
|
|
|
var JsonRpcProvider = /** @class */ (function (_super) {
|
|
|
|
__extends(JsonRpcProvider, _super);
|
|
|
|
function JsonRpcProvider(url, network) {
|
|
|
|
var _this = this;
|
|
|
|
// One parameter, but it is a network name, so swap it with the URL
|
|
|
|
if (typeof (url) === 'string') {
|
|
|
|
if (network === null && networks_1.getNetwork(url)) {
|
|
|
|
network = url;
|
|
|
|
url = null;
|
|
|
|
}
|
|
|
|
}
|
2018-06-18 12:42:41 +03:00
|
|
|
if (network) {
|
|
|
|
// The network has been specified explicitly, we can use it
|
|
|
|
_this = _super.call(this, network) || this;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// The network is unknown, query the JSON-RPC for it
|
|
|
|
var ready = new Promise(function (resolve, reject) {
|
|
|
|
setTimeout(function () {
|
|
|
|
_this.send('net_version', []).then(function (result) {
|
|
|
|
var chainId = parseInt(result);
|
|
|
|
resolve(networks_1.getNetwork(chainId));
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
_this = _super.call(this, ready) || this;
|
|
|
|
}
|
2018-06-14 04:10:41 +03:00
|
|
|
errors.checkNew(_this, JsonRpcProvider);
|
2018-06-13 22:39:39 +03:00
|
|
|
// Default URL
|
|
|
|
if (!url) {
|
|
|
|
url = 'http://localhost:8545';
|
|
|
|
}
|
|
|
|
if (typeof (url) === 'string') {
|
|
|
|
_this.connection = {
|
|
|
|
url: url
|
|
|
|
};
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
_this.connection = url;
|
|
|
|
}
|
|
|
|
return _this;
|
|
|
|
}
|
|
|
|
JsonRpcProvider.prototype.getSigner = function (address) {
|
|
|
|
return new JsonRpcSigner(this, address);
|
|
|
|
};
|
|
|
|
JsonRpcProvider.prototype.listAccounts = function () {
|
|
|
|
return this.send('eth_accounts', []).then(function (accounts) {
|
|
|
|
return accounts.map(function (a) { return address_1.getAddress(a); });
|
|
|
|
});
|
|
|
|
};
|
|
|
|
JsonRpcProvider.prototype.send = function (method, params) {
|
|
|
|
var request = {
|
|
|
|
method: method,
|
|
|
|
params: params,
|
|
|
|
id: 42,
|
|
|
|
jsonrpc: "2.0"
|
|
|
|
};
|
|
|
|
return web_1.fetchJson(this.connection, JSON.stringify(request), getResult);
|
|
|
|
};
|
|
|
|
JsonRpcProvider.prototype.perform = function (method, params) {
|
|
|
|
switch (method) {
|
|
|
|
case 'getBlockNumber':
|
|
|
|
return this.send('eth_blockNumber', []);
|
|
|
|
case 'getGasPrice':
|
|
|
|
return this.send('eth_gasPrice', []);
|
|
|
|
case 'getBalance':
|
|
|
|
return this.send('eth_getBalance', [getLowerCase(params.address), params.blockTag]);
|
|
|
|
case 'getTransactionCount':
|
|
|
|
return this.send('eth_getTransactionCount', [getLowerCase(params.address), params.blockTag]);
|
|
|
|
case 'getCode':
|
|
|
|
return this.send('eth_getCode', [getLowerCase(params.address), params.blockTag]);
|
|
|
|
case 'getStorageAt':
|
|
|
|
return this.send('eth_getStorageAt', [getLowerCase(params.address), params.position, params.blockTag]);
|
|
|
|
case 'sendTransaction':
|
|
|
|
return this.send('eth_sendRawTransaction', [params.signedTransaction]);
|
|
|
|
case 'getBlock':
|
|
|
|
if (params.blockTag) {
|
|
|
|
return this.send('eth_getBlockByNumber', [params.blockTag, false]);
|
|
|
|
}
|
|
|
|
else if (params.blockHash) {
|
|
|
|
return this.send('eth_getBlockByHash', [params.blockHash, false]);
|
|
|
|
}
|
|
|
|
return Promise.reject(new Error('invalid block tag or block hash'));
|
|
|
|
case 'getTransaction':
|
|
|
|
return this.send('eth_getTransactionByHash', [params.transactionHash]);
|
|
|
|
case 'getTransactionReceipt':
|
|
|
|
return this.send('eth_getTransactionReceipt', [params.transactionHash]);
|
|
|
|
case 'call':
|
|
|
|
return this.send('eth_call', [hexlifyTransaction(params.transaction), 'latest']);
|
|
|
|
case 'estimateGas':
|
|
|
|
return this.send('eth_estimateGas', [hexlifyTransaction(params.transaction)]);
|
|
|
|
case 'getLogs':
|
|
|
|
if (params.filter && params.filter.address != null) {
|
|
|
|
params.filter.address = getLowerCase(params.filter.address);
|
|
|
|
}
|
|
|
|
return this.send('eth_getLogs', [params.filter]);
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
errors.throwError(method + ' not implemented', errors.NOT_IMPLEMENTED, { operation: method });
|
|
|
|
return null;
|
|
|
|
};
|
|
|
|
JsonRpcProvider.prototype._startPending = function () {
|
|
|
|
if (this._pendingFilter != null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
var self = this;
|
|
|
|
var pendingFilter = this.send('eth_newPendingTransactionFilter', []);
|
|
|
|
this._pendingFilter = pendingFilter;
|
|
|
|
pendingFilter.then(function (filterId) {
|
|
|
|
function poll() {
|
|
|
|
self.send('eth_getFilterChanges', [filterId]).then(function (hashes) {
|
|
|
|
if (self._pendingFilter != pendingFilter) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
var seq = Promise.resolve();
|
|
|
|
hashes.forEach(function (hash) {
|
|
|
|
self._emitted['t:' + hash.toLowerCase()] = 'pending';
|
|
|
|
seq = seq.then(function () {
|
|
|
|
return self.getTransaction(hash).then(function (tx) {
|
|
|
|
self.emit('pending', tx);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
return seq.then(function () {
|
|
|
|
return timer(1000);
|
|
|
|
});
|
|
|
|
}).then(function () {
|
|
|
|
if (self._pendingFilter != pendingFilter) {
|
|
|
|
self.send('eth_uninstallFilter', [filterId]);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
setTimeout(function () { poll(); }, 0);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
poll();
|
|
|
|
return filterId;
|
|
|
|
});
|
|
|
|
};
|
|
|
|
JsonRpcProvider.prototype._stopPending = function () {
|
|
|
|
this._pendingFilter = null;
|
|
|
|
};
|
|
|
|
return JsonRpcProvider;
|
2018-06-14 12:38:37 +03:00
|
|
|
}(provider_1.Provider));
|
2018-06-13 22:39:39 +03:00
|
|
|
exports.JsonRpcProvider = JsonRpcProvider;
|