UNPKG

5.63 kBJavaScriptView Raw
1"use strict";
2var __assign = (this && this.__assign) || function () {
3 __assign = Object.assign || function(t) {
4 for (var s, i = 1, n = arguments.length; i < n; i++) {
5 s = arguments[i];
6 for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
7 t[p] = s[p];
8 }
9 return t;
10 };
11 return __assign.apply(this, arguments);
12};
13var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
14 function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
15 return new (P || (P = Promise))(function (resolve, reject) {
16 function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
17 function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
18 function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
19 step((generator = generator.apply(thisArg, _arguments || [])).next());
20 });
21};
22var __generator = (this && this.__generator) || function (thisArg, body) {
23 var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
24 return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
25 function verb(n) { return function (v) { return step([n, v]); }; }
26 function step(op) {
27 if (f) throw new TypeError("Generator is already executing.");
28 while (_) try {
29 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;
30 if (y = 0, t) op = [op[0] & 2, t.value];
31 switch (op[0]) {
32 case 0: case 1: t = op; break;
33 case 4: _.label++; return { value: op[1], done: false };
34 case 5: _.label++; y = op[1]; op = [0]; continue;
35 case 7: op = _.ops.pop(); _.trys.pop(); continue;
36 default:
37 if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
38 if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
39 if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
40 if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
41 if (t[2]) _.ops.pop();
42 _.trys.pop(); continue;
43 }
44 op = body.call(thisArg, _);
45 } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
46 if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
47 }
48};
49var __importDefault = (this && this.__importDefault) || function (mod) {
50 return (mod && mod.__esModule) ? mod : { "default": mod };
51};
52exports.__esModule = true;
53exports.loadInfosForContractMethod = void 0;
54var axios_1 = __importDefault(require("axios"));
55var loadConfig_1 = require("./loadConfig");
56var logs_1 = require("@ledgerhq/logs");
57/**
58 * Retrieve the metadatas a given contract address and a method selector
59 */
60var loadInfosForContractMethod = function (contractAddress, selector, chainId, userLoadConfig) { return __awaiter(void 0, void 0, void 0, function () {
61 var _a, pluginBaseURL, extraPlugins, data, url_1, lcSelector, lcContractAddress, contractSelectors;
62 return __generator(this, function (_b) {
63 switch (_b.label) {
64 case 0:
65 _a = (0, loadConfig_1.getLoadConfig)(userLoadConfig), pluginBaseURL = _a.pluginBaseURL, extraPlugins = _a.extraPlugins;
66 data = {};
67 if (!pluginBaseURL) return [3 /*break*/, 2];
68 url_1 = "".concat(pluginBaseURL, "/plugins/ethereum.json");
69 return [4 /*yield*/, axios_1["default"]
70 .get("".concat(pluginBaseURL, "/plugins/ethereum.json"))
71 .then(function (r) { return r.data; })["catch"](function (e) {
72 (0, logs_1.log)("error", "could not fetch from " + url_1 + ": " + String(e));
73 return null;
74 })];
75 case 1:
76 data = _b.sent();
77 _b.label = 2;
78 case 2:
79 if (extraPlugins) {
80 data = __assign(__assign({}, data), extraPlugins);
81 }
82 if (!data)
83 return [2 /*return*/];
84 lcSelector = selector.toLowerCase();
85 lcContractAddress = contractAddress.toLowerCase();
86 if (lcContractAddress in data) {
87 contractSelectors = data[lcContractAddress];
88 if (lcSelector in contractSelectors) {
89 return [2 /*return*/, {
90 payload: contractSelectors[lcSelector]["serialized_data"],
91 signature: contractSelectors[lcSelector]["signature"],
92 plugin: contractSelectors[lcSelector]["plugin"],
93 erc20OfInterest: contractSelectors[lcSelector]["erc20OfInterest"],
94 abi: contractSelectors["abi"]
95 }];
96 }
97 }
98 return [2 /*return*/];
99 }
100 });
101}); };
102exports.loadInfosForContractMethod = loadInfosForContractMethod;
103//# sourceMappingURL=contracts.js.map
\No newline at end of file