From 5325bcfd02fc92ff1b07e743d15dc09e00686705 Mon Sep 17 00:00:00 2001 From: Pavel Shuvalov Date: Wed, 11 Sep 2024 15:21:19 +0400 Subject: [PATCH] Fix API endpoint --- dexs/gaspump/index.ts | 2 +- fees/gaspump/index.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dexs/gaspump/index.ts b/dexs/gaspump/index.ts index 3d2eb13f4d..dd446928ad 100644 --- a/dexs/gaspump/index.ts +++ b/dexs/gaspump/index.ts @@ -4,7 +4,7 @@ import { FetchOptions } from "../../adapters/types"; import { getPrices } from "../../utils/prices"; -const endpoint = "https://api-dev.gas111.com/api/v1/internal/tokens/volume-stats?" +const endpoint = "https://api.gas111.com/api/v1/internal/tokens/volume-stats?" const fetch = async (options: FetchOptions) => { diff --git a/fees/gaspump/index.ts b/fees/gaspump/index.ts index 69ef6c56eb..7f7a020294 100644 --- a/fees/gaspump/index.ts +++ b/fees/gaspump/index.ts @@ -4,7 +4,7 @@ import { FetchOptions } from "../../adapters/types"; import { getPrices } from "../../utils/prices"; -const endpoint = "https://api-dev.gas111.com/api/v1/internal/tokens/volume-stats?" +const endpoint = "https://api.gas111.com/api/v1/internal/tokens/volume-stats?" const fetch = async (options: FetchOptions) => {