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 + } } }