UNPKG

coingecko-openapi-client

Version:
24 lines (23 loc) 1.28 kB
"use strict"; var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } return new (P || (P = Promise))(function (resolve, reject) { function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } step((generator = generator.apply(thisArg, _arguments || [])).next()); }); }; Object.defineProperty(exports, "__esModule", { value: true }); const index_1 = require("../../client/typescript/index"); function fetchCoinsList() { return __awaiter(this, void 0, void 0, function* () { const client = new index_1.CoingeckoAPIClient({ BASE: process.env.COINGECKO_BASE_URL || "https://api.coingecko.com/api/v3", }); // fetch top 10 layer-1 coins const categoryCoinsList = yield client.coins.getCoinsMarkets('usd', undefined, 'layer-1', undefined, 10); console.log(categoryCoinsList); }); } fetchCoinsList();