Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/workflows/stg-refresh-secrets-restart.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 0 additions & 2 deletions apps/token-storage-detection/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ MEGAETH_RPC=
MOCA_RPC=

PLASMATESTNET_RPC=
# SOPHONTESTNET_RPC=
# MONADTESTNET_RPC=
CHILIZSPICY_RPC=
ETHEREUMSEPOLIA_RPC=
Expand Down Expand Up @@ -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
Expand Down
2 changes: 0 additions & 2 deletions apps/token-storage-detection/src/state.rs
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,6 @@ pub enum Chain {
// Testnets
MonadTestnet,
PlasmaTestnet,
SophonTestnet,
ChilizSpicy,
EthereumSepolia,
BaseSepolia,
Expand Down Expand Up @@ -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),
Expand Down
4 changes: 0 additions & 4 deletions k8s/values.staging.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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
Expand Down
29 changes: 0 additions & 29 deletions src/modules/chains/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -317,7 +289,6 @@ export const CHAIN_DEFINITIONS: chains.Chain[] = values({
monadMainnet,
arcTestnet,
sonicTestnet,
sophonTestnet,
mocaTestnet,
mocaMainnet,
megaethTestnet,
Expand Down