diff --git a/apps/web/src/state/farmsV4/state/poolApr/fetcher.ts b/apps/web/src/state/farmsV4/state/poolApr/fetcher.ts index 4bb2a2888a30e..7bad5c318ca6b 100644 --- a/apps/web/src/state/farmsV4/state/poolApr/fetcher.ts +++ b/apps/web/src/state/farmsV4/state/poolApr/fetcher.ts @@ -217,7 +217,7 @@ export const getMerklApr = async (result: any, chainId: number) => { } export const getAllNetworkMerklApr = async (signal?: AbortSignal) => { - const resp = await fetch(`https://api.angle.money/v2/merkl?AMMs=pancakeswapv3`, { signal }) + const resp = await fetch(`https://api.angle.money/v2/merkl`, { signal }) if (resp.ok) { const result = await resp.json() const aprs = await Promise.all(supportedChainIdV4.map((chainId) => getMerklApr(result, chainId)))