From 019e9ecf62dc287a47750d0b145fecaa6f038e81 Mon Sep 17 00:00:00 2001 From: taylanpince <12650+taylanpince@users.noreply.github.com> Date: Wed, 17 Dec 2025 17:46:22 +0000 Subject: [PATCH 1/2] [AUTOMATED] Update constants.ts --- packages/network/src/constants.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/network/src/constants.ts b/packages/network/src/constants.ts index 2013331ab..c3d1252b1 100644 --- a/packages/network/src/constants.ts +++ b/packages/network/src/constants.ts @@ -1066,7 +1066,7 @@ export const networks: Record = { testnet: false, blockExplorer: { name: 'Monad Explorer', - rootUrl: 'https://mainnet-beta.monvision.io/' + rootUrl: 'https://monvision.io/' }, nativeToken: { symbol: 'MON', @@ -1121,7 +1121,7 @@ export const networks: Record = { testnet: true, blockExplorer: { name: 'Incentiv Testnet Explorer v2', - rootUrl: 'https://explorer.testnet.incentiv.net/' + rootUrl: 'https://explorer-testnet.incentiv.io/' }, nativeToken: { symbol: 'TCENT', From 9c461213dfe9621b511d240ef7a29d48fd10afd5 Mon Sep 17 00:00:00 2001 From: andres-horizon <162160045+andres-horizon@users.noreply.github.com> Date: Tue, 10 Feb 2026 22:12:04 +0000 Subject: [PATCH 2/2] [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 c3d1252b1..26c9eb3db 100644 --- a/packages/network/src/constants.ts +++ b/packages/network/src/constants.ts @@ -150,7 +150,10 @@ export enum ChainId { ARC_TESTNET = 5042002, // HYPEREVM - HYPEREVM = 999 + HYPEREVM = 999, + + // SONIC + SONIC = 146 } export const networks: Record = { @@ -1236,6 +1239,24 @@ export const networks: Record = { name: 'HYPE', decimals: 18 } + }, + + [ChainId.SONIC]: { + chainId: ChainId.SONIC, + type: NetworkType.MAINNET, + name: 'sonic', + title: 'Sonic', + logoURI: `https://assets.sequence.info/images/networks/medium/${ChainId.SONIC}.webp`, + testnet: false, + blockExplorer: { + name: 'Sonic', + rootUrl: 'https://sonicscan.org/' + }, + nativeToken: { + symbol: 'Sonic', + name: 'Sonic', + decimals: 18 + } } }