From 247adccceb41c6b6327fc2d2f1afca1d577bcbfe Mon Sep 17 00:00:00 2001 From: Jack Hamer Date: Mon, 8 Apr 2024 14:33:58 +0300 Subject: [PATCH] fix: undo use rpc for balances --- .github/workflows/production.yml | 1 + data/networks.ts | 5 ----- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/production.yml b/.github/workflows/production.yml index 533be57f5..b9b7c4bfd 100644 --- a/.github/workflows/production.yml +++ b/.github/workflows/production.yml @@ -33,6 +33,7 @@ jobs: - name: Setup .env run: | echo "WALLET_CONNECT_PROJECT_ID=${{ secrets.WALLET_CONNECT_PROJECT_ID }}" > .env + echo "ANKR_TOKEN=${{ secrets.ANKR_TOKEN }}" >> .env echo "SCREENING_API_URL=${{ secrets.SCREENING_API_URL }}" >> .env echo "DATAPLANE_URL=${{ secrets.DATAPLANE_URL }}" >> .env echo "RUDDER_KEY=${{ secrets.RUDDER_KEY }}" >> .env diff --git a/data/networks.ts b/data/networks.ts index b64e1129b..34e7d249f 100644 --- a/data/networks.ts +++ b/data/networks.ts @@ -8,11 +8,6 @@ import type { Chain } from "@wagmi/core/chains"; export const l1Networks = { mainnet: { ...mainnet, - rpcUrls: { - default: { - http: ["https://rpc.ankr.com/eth/f66261f3ba4647abb11fc7a7048110ecc2a470590cab52e8ee81b01a0f9006ab"], - }, - }, name: "Ethereum", network: "mainnet", },