From af22f84e7b1e3e0f836915eaad2984d1780a341a Mon Sep 17 00:00:00 2001 From: andres-horizon <162160045+andres-horizon@users.noreply.github.com> Date: Fri, 13 Feb 2026 15:15:05 +0000 Subject: [PATCH] [AUTOMATED] Update constants.ts --- packages/network/src/constants.ts | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/packages/network/src/constants.ts b/packages/network/src/constants.ts index 26c9eb3db..18f6c8a23 100644 --- a/packages/network/src/constants.ts +++ b/packages/network/src/constants.ts @@ -153,7 +153,10 @@ export enum ChainId { HYPEREVM = 999, // SONIC - SONIC = 146 + SONIC = 146, + + // BERACHAIN + BERACHAIN = 80094 } export const networks: Record = { @@ -1257,6 +1260,24 @@ export const networks: Record = { name: 'Sonic', decimals: 18 } + }, + + [ChainId.BERACHAIN]: { + chainId: ChainId.BERACHAIN, + type: NetworkType.MAINNET, + name: 'berachain', + title: 'Berachain', + logoURI: `https://assets.sequence.info/images/networks/medium/${ChainId.BERACHAIN}.webp`, + testnet: false, + blockExplorer: { + name: 'Berachain', + rootUrl: 'https://berascan.com/' + }, + nativeToken: { + symbol: 'Berachain', + name: 'Berachain', + decimals: 18 + } } }