UNPKG

8.06 kBJavaScriptView Raw
1"use strict";
2var __extends = (this && this.__extends) || (function () {
3 var extendStatics = function (d, b) {
4 extendStatics = Object.setPrototypeOf ||
5 ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
6 function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
7 return extendStatics(d, b);
8 };
9 return function (d, b) {
10 if (typeof b !== "function" && b !== null)
11 throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
12 extendStatics(d, b);
13 function __() { this.constructor = d; }
14 d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
15 };
16})();
17var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
18 function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
19 return new (P || (P = Promise))(function (resolve, reject) {
20 function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
21 function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
22 function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
23 step((generator = generator.apply(thisArg, _arguments || [])).next());
24 });
25};
26var __generator = (this && this.__generator) || function (thisArg, body) {
27 var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
28 return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
29 function verb(n) { return function (v) { return step([n, v]); }; }
30 function step(op) {
31 if (f) throw new TypeError("Generator is already executing.");
32 while (_) try {
33 if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
34 if (y = 0, t) op = [op[0] & 2, t.value];
35 switch (op[0]) {
36 case 0: case 1: t = op; break;
37 case 4: _.label++; return { value: op[1], done: false };
38 case 5: _.label++; y = op[1]; op = [0]; continue;
39 case 7: op = _.ops.pop(); _.trys.pop(); continue;
40 default:
41 if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
42 if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
43 if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
44 if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
45 if (t[2]) _.ops.pop();
46 _.trys.pop(); continue;
47 }
48 op = body.call(thisArg, _);
49 } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
50 if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
51 }
52};
53Object.defineProperty(exports, "__esModule", { value: true });
54exports.UrlJsonRpcProvider = exports.StaticJsonRpcProvider = void 0;
55var properties_1 = require("@ethersproject/properties");
56var logger_1 = require("@ethersproject/logger");
57var _version_1 = require("./_version");
58var logger = new logger_1.Logger(_version_1.version);
59var json_rpc_provider_1 = require("./json-rpc-provider");
60// A StaticJsonRpcProvider is useful when you *know* for certain that
61// the backend will never change, as it never calls eth_chainId to
62// verify its backend. However, if the backend does change, the effects
63// are undefined and may include:
64// - inconsistent results
65// - locking up the UI
66// - block skew warnings
67// - wrong results
68// If the network is not explicit (i.e. auto-detection is expected), the
69// node MUST be running and available to respond to requests BEFORE this
70// is instantiated.
71var StaticJsonRpcProvider = /** @class */ (function (_super) {
72 __extends(StaticJsonRpcProvider, _super);
73 function StaticJsonRpcProvider() {
74 return _super !== null && _super.apply(this, arguments) || this;
75 }
76 StaticJsonRpcProvider.prototype.detectNetwork = function () {
77 return __awaiter(this, void 0, void 0, function () {
78 var network;
79 return __generator(this, function (_a) {
80 switch (_a.label) {
81 case 0:
82 network = this.network;
83 if (!(network == null)) return [3 /*break*/, 2];
84 return [4 /*yield*/, _super.prototype.detectNetwork.call(this)];
85 case 1:
86 network = _a.sent();
87 if (!network) {
88 logger.throwError("no network detected", logger_1.Logger.errors.UNKNOWN_ERROR, {});
89 }
90 // If still not set, set it
91 if (this._network == null) {
92 // A static network does not support "any"
93 (0, properties_1.defineReadOnly)(this, "_network", network);
94 this.emit("network", network, null);
95 }
96 _a.label = 2;
97 case 2: return [2 /*return*/, network];
98 }
99 });
100 });
101 };
102 return StaticJsonRpcProvider;
103}(json_rpc_provider_1.JsonRpcProvider));
104exports.StaticJsonRpcProvider = StaticJsonRpcProvider;
105var UrlJsonRpcProvider = /** @class */ (function (_super) {
106 __extends(UrlJsonRpcProvider, _super);
107 function UrlJsonRpcProvider(network, apiKey) {
108 var _newTarget = this.constructor;
109 var _this = this;
110 logger.checkAbstract(_newTarget, UrlJsonRpcProvider);
111 // Normalize the Network and API Key
112 network = (0, properties_1.getStatic)(_newTarget, "getNetwork")(network);
113 apiKey = (0, properties_1.getStatic)(_newTarget, "getApiKey")(apiKey);
114 var connection = (0, properties_1.getStatic)(_newTarget, "getUrl")(network, apiKey);
115 _this = _super.call(this, connection, network) || this;
116 if (typeof (apiKey) === "string") {
117 (0, properties_1.defineReadOnly)(_this, "apiKey", apiKey);
118 }
119 else if (apiKey != null) {
120 Object.keys(apiKey).forEach(function (key) {
121 (0, properties_1.defineReadOnly)(_this, key, apiKey[key]);
122 });
123 }
124 return _this;
125 }
126 UrlJsonRpcProvider.prototype._startPending = function () {
127 logger.warn("WARNING: API provider does not support pending filters");
128 };
129 UrlJsonRpcProvider.prototype.isCommunityResource = function () {
130 return false;
131 };
132 UrlJsonRpcProvider.prototype.getSigner = function (address) {
133 return logger.throwError("API provider does not support signing", logger_1.Logger.errors.UNSUPPORTED_OPERATION, { operation: "getSigner" });
134 };
135 UrlJsonRpcProvider.prototype.listAccounts = function () {
136 return Promise.resolve([]);
137 };
138 // Return a defaultApiKey if null, otherwise validate the API key
139 UrlJsonRpcProvider.getApiKey = function (apiKey) {
140 return apiKey;
141 };
142 // Returns the url or connection for the given network and API key. The
143 // API key will have been sanitized by the getApiKey first, so any validation
144 // or transformations can be done there.
145 UrlJsonRpcProvider.getUrl = function (network, apiKey) {
146 return logger.throwError("not implemented; sub-classes must override getUrl", logger_1.Logger.errors.NOT_IMPLEMENTED, {
147 operation: "getUrl"
148 });
149 };
150 return UrlJsonRpcProvider;
151}(StaticJsonRpcProvider));
152exports.UrlJsonRpcProvider = UrlJsonRpcProvider;
153//# sourceMappingURL=url-json-rpc-provider.js.map
\No newline at end of file