diff --git a/zp-relayer/services/gas-price/GasPrice.ts b/zp-relayer/services/gas-price/GasPrice.ts index 33136a2..39c033c 100644 --- a/zp-relayer/services/gas-price/GasPrice.ts +++ b/zp-relayer/services/gas-price/GasPrice.ts @@ -227,7 +227,7 @@ export class GasPrice { } private fetchPolygonGasStationV2: FetchFunc = async options => { - const response = await fetch('https://gasstation-mainnet.matic.network/v2') + const response = await fetch('https://gasstation.polygon.technology/v2') const json: PolygonGSV2Response = await response.json() const speedType = polygonGasPriceKeyMapping[options.speedType] const { maxFee, maxPriorityFee } = json[speedType]