From a03101d648624581d35db7a702806a474a1021d3 Mon Sep 17 00:00:00 2001 From: Enzo Ferey Date: Thu, 15 Jun 2023 16:37:36 +0200 Subject: [PATCH] feat: update Polygon and Mumbai gas stations urls --- lib/networks/getPolygonGasPrice.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/networks/getPolygonGasPrice.ts b/lib/networks/getPolygonGasPrice.ts index 6a17545..67476cc 100644 --- a/lib/networks/getPolygonGasPrice.ts +++ b/lib/networks/getPolygonGasPrice.ts @@ -4,8 +4,8 @@ import type { GasPrice, PolygonNetwork } from "../types"; import { getAsapGasPriceLevel } from "../getAsapGasPriceLevel"; export const GAS_STATION_URL_BY_NETWORK: Record = { - polygon: "https://gasstation-mainnet.matic.network/v2", - mumbai: "https://gasstation-mumbai.matic.today/v2", + polygon: "https://gasstation.polygon.technology/v2", + mumbai: "https://gasstation-testnet.polygon.technology/v2", }; export const DEFAULT_FALLBACK_GAS_PRICE = 50;