From 365f030a585d8bf658aa0cf16276615b6d795b98 Mon Sep 17 00:00:00 2001 From: Venkatesh Date: Fri, 20 Feb 2026 22:27:04 +0530 Subject: [PATCH] feat: removed sophon chain --- .../workflows/stg-refresh-secrets-restart.yml | 1 - apps/token-storage-detection/.env.example | 2 -- apps/token-storage-detection/src/state.rs | 2 -- k8s/values.staging.yaml | 4 --- src/modules/chains/constants.ts | 29 ------------------- 5 files changed, 38 deletions(-) diff --git a/.github/workflows/stg-refresh-secrets-restart.yml b/.github/workflows/stg-refresh-secrets-restart.yml index 2be7c91e..e0d437ad 100644 --- a/.github/workflows/stg-refresh-secrets-restart.yml +++ b/.github/workflows/stg-refresh-secrets-restart.yml @@ -25,7 +25,6 @@ jobs: stg-token-storage-detection-env, stg-mee-mode-0-key-enc, stg-mee-node-0-secret-envs, - mee-node-sophon-testnet-531050204-configs, mee-node-worldchain-sepolia-4801-configs, mee-node-plasma-testnet-9746-configs, mee-node-sei-testnet-1328-configs, diff --git a/apps/token-storage-detection/.env.example b/apps/token-storage-detection/.env.example index 9d8bc20a..38439b1d 100644 --- a/apps/token-storage-detection/.env.example +++ b/apps/token-storage-detection/.env.example @@ -33,7 +33,6 @@ MEGAETH_RPC= MOCA_RPC= PLASMATESTNET_RPC= -# SOPHONTESTNET_RPC= # MONADTESTNET_RPC= CHILIZSPICY_RPC= ETHEREUMSEPOLIA_RPC= @@ -84,7 +83,6 @@ MEGAETH_FORK_RPC=https://mainnet.megaeth.com/rpc MOCA_FORK_RPC=https://rpc.mocachain.org PLASMATESTNET_FORK_RPC=https://testnet-rpc.plasma.to -SOPHONTESTNET_FORK_RPC=https://rpc.testnet.os.sophon.com MONADTESTNET_FORK_RPC=https://testnet-rpc.monad.xyz CHILIZSPICY_FORK_RPC=https://spicy-rpc.chiliz.com ETHEREUMSEPOLIA_FORK_RPC=https://rpc.sepolia.org diff --git a/apps/token-storage-detection/src/state.rs b/apps/token-storage-detection/src/state.rs index c013fb28..f6673f03 100644 --- a/apps/token-storage-detection/src/state.rs +++ b/apps/token-storage-detection/src/state.rs @@ -133,7 +133,6 @@ pub enum Chain { // Testnets MonadTestnet, PlasmaTestnet, - SophonTestnet, ChilizSpicy, EthereumSepolia, BaseSepolia, @@ -188,7 +187,6 @@ impl FromStr for Chain { "2288" => Ok(Chain::Moca), // Testnets "9746" => Ok(Chain::PlasmaTestnet), - "531050204" => Ok(Chain::SophonTestnet), "10143" => Ok(Chain::MonadTestnet), "88882" => Ok(Chain::ChilizSpicy), "11155111" => Ok(Chain::EthereumSepolia), diff --git a/k8s/values.staging.yaml b/k8s/values.staging.yaml index f77fc1c9..fadb3691 100644 --- a/k8s/values.staging.yaml +++ b/k8s/values.staging.yaml @@ -62,9 +62,6 @@ universal-helm: arc-testnet: chain_id: "5042002" gcpsecretkey: "stg-mee-mode-arc-testnet-config" - sophon-testnet: - chain_id: "531050204" - gcpsecretkey: "stg-mee-mode-sophon-testnet-config" sonic-testnet: chain_id: "14601" gcpsecretkey: "stg-mee-mode-sonic-testnet-config" @@ -173,7 +170,6 @@ universal-helm: - plasma-testnet: 9746 - sepolia: 11155111 - arc-testnet: 5042002 - # - sophon-testnet: 531050204 - sonic-testnet: 14601 - avax-testnet: 43113 - megaeth-testnet: 6342 diff --git a/src/modules/chains/constants.ts b/src/modules/chains/constants.ts index f9f08343..d71a05aa 100644 --- a/src/modules/chains/constants.ts +++ b/src/modules/chains/constants.ts @@ -142,34 +142,6 @@ const monadMainnet = defineChain({ testnet: false, }) as chains.Chain; -const sophonTestnet = defineChain({ - id: 531050204, - name: "Sophon Testnet", - nativeCurrency: { - decimals: 18, - name: "Sophon", - symbol: "SOPH", - }, - rpcUrls: { - default: { - http: ["https://zksync-os-testnet-sophon.zksync.dev"], - }, - }, - blockExplorers: { - default: { - name: "Sophon Testnet Block Explorer", - url: "https://block-explorer.zksync-os-testnet-sophon.zksync.dev", - }, - }, - contracts: { - multicall3: { - address: "0x5f4867441d2416cA88B1b3fd38f21811680CD2C8", - blockCreated: 30197, - }, - }, - testnet: true, -}); - const hyperEvm = defineChain({ id: 999, name: "HyperEVM", @@ -317,7 +289,6 @@ export const CHAIN_DEFINITIONS: chains.Chain[] = values({ monadMainnet, arcTestnet, sonicTestnet, - sophonTestnet, mocaTestnet, mocaMainnet, megaethTestnet,