From e43e32ccfdcb95bd0b37a3d73dfa5dea57c759e5 Mon Sep 17 00:00:00 2001 From: Jack Hamer Date: Mon, 8 Apr 2024 14:32:17 +0300 Subject: [PATCH] fix: temporarily use rpc for balances --- .github/workflows/production.yml | 1 - data/networks.ts | 5 +++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/production.yml b/.github/workflows/production.yml index b9b7c4bfd..533be57f5 100644 --- a/.github/workflows/production.yml +++ b/.github/workflows/production.yml @@ -33,7 +33,6 @@ 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 34e7d249f..b64e1129b 100644 --- a/data/networks.ts +++ b/data/networks.ts @@ -8,6 +8,11 @@ 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", },