UNPKG

rubic-sdk

Version:
26 lines 1.35 kB
"use strict"; var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) { var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d; if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc); else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r; return c > 3 && r && Object.defineProperty(target, key, r), r; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.ZrxApiService = void 0; const decorators_1 = require("../../../../../../common/utils/decorators"); const injector_1 = require("../../../../../../core/injector/injector"); const utils_1 = require("./utils"); class ZrxApiService { static getTradeData(params, blockchain) { const endpoint = this.getApiBaseUrl(blockchain); return injector_1.Injector.httpClient.get(`${endpoint}swap/v1/quote`, params); } static getApiBaseUrl(blockchain) { return (0, utils_1.getZrxApiBaseUrl)(blockchain); } } exports.ZrxApiService = ZrxApiService; __decorate([ decorators_1.Cache ], ZrxApiService, "getApiBaseUrl", null); //# sourceMappingURL=zrx-api-service.js.map