From 06ee980a87ca6f1d85f2413b5c16e182822c866e Mon Sep 17 00:00:00 2001 From: crebsy <121096251+crebsy@users.noreply.github.com> Date: Mon, 31 Mar 2025 12:59:00 +0200 Subject: [PATCH] feat: change the default chainId for the prod env --- src/environments.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/environments.ts b/src/environments.ts index 0f4c67f..15c1aa1 100644 --- a/src/environments.ts +++ b/src/environments.ts @@ -15,7 +15,7 @@ export type EnvironmentConfig = { export const production: EnvironmentConfig = { name: 'production', backend: 'https://api.grove.storage', - defaultChainId: 37111, + defaultChainId: 232, propagationTimeout: 10000, propagationPollingInterval: 500, };