Skip to content

Commit 822dd8c

Browse files
authored
Merge pull request #180 from bcnmy/feat/sophon-removed
feat: removed sophon chain
2 parents 1322ba9 + 365f030 commit 822dd8c

5 files changed

Lines changed: 0 additions & 38 deletions

File tree

.github/workflows/stg-refresh-secrets-restart.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ jobs:
2525
stg-token-storage-detection-env,
2626
stg-mee-mode-0-key-enc,
2727
stg-mee-node-0-secret-envs,
28-
mee-node-sophon-testnet-531050204-configs,
2928
mee-node-worldchain-sepolia-4801-configs,
3029
mee-node-plasma-testnet-9746-configs,
3130
mee-node-sei-testnet-1328-configs,

apps/token-storage-detection/.env.example

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ MEGAETH_RPC=
3333
MOCA_RPC=
3434

3535
PLASMATESTNET_RPC=
36-
# SOPHONTESTNET_RPC=
3736
# MONADTESTNET_RPC=
3837
CHILIZSPICY_RPC=
3938
ETHEREUMSEPOLIA_RPC=
@@ -84,7 +83,6 @@ MEGAETH_FORK_RPC=https://mainnet.megaeth.com/rpc
8483
MOCA_FORK_RPC=https://rpc.mocachain.org
8584

8685
PLASMATESTNET_FORK_RPC=https://testnet-rpc.plasma.to
87-
SOPHONTESTNET_FORK_RPC=https://rpc.testnet.os.sophon.com
8886
MONADTESTNET_FORK_RPC=https://testnet-rpc.monad.xyz
8987
CHILIZSPICY_FORK_RPC=https://spicy-rpc.chiliz.com
9088
ETHEREUMSEPOLIA_FORK_RPC=https://rpc.sepolia.org

apps/token-storage-detection/src/state.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,6 @@ pub enum Chain {
133133
// Testnets
134134
MonadTestnet,
135135
PlasmaTestnet,
136-
SophonTestnet,
137136
ChilizSpicy,
138137
EthereumSepolia,
139138
BaseSepolia,
@@ -188,7 +187,6 @@ impl FromStr for Chain {
188187
"2288" => Ok(Chain::Moca),
189188
// Testnets
190189
"9746" => Ok(Chain::PlasmaTestnet),
191-
"531050204" => Ok(Chain::SophonTestnet),
192190
"10143" => Ok(Chain::MonadTestnet),
193191
"88882" => Ok(Chain::ChilizSpicy),
194192
"11155111" => Ok(Chain::EthereumSepolia),

k8s/values.staging.yaml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,6 @@ universal-helm:
6262
arc-testnet:
6363
chain_id: "5042002"
6464
gcpsecretkey: "stg-mee-mode-arc-testnet-config"
65-
sophon-testnet:
66-
chain_id: "531050204"
67-
gcpsecretkey: "stg-mee-mode-sophon-testnet-config"
6865
sonic-testnet:
6966
chain_id: "14601"
7067
gcpsecretkey: "stg-mee-mode-sonic-testnet-config"
@@ -173,7 +170,6 @@ universal-helm:
173170
- plasma-testnet: 9746
174171
- sepolia: 11155111
175172
- arc-testnet: 5042002
176-
# - sophon-testnet: 531050204
177173
- sonic-testnet: 14601
178174
- avax-testnet: 43113
179175
- megaeth-testnet: 6342

src/modules/chains/constants.ts

Lines changed: 0 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -142,34 +142,6 @@ const monadMainnet = defineChain({
142142
testnet: false,
143143
}) as chains.Chain;
144144

145-
const sophonTestnet = defineChain({
146-
id: 531050204,
147-
name: "Sophon Testnet",
148-
nativeCurrency: {
149-
decimals: 18,
150-
name: "Sophon",
151-
symbol: "SOPH",
152-
},
153-
rpcUrls: {
154-
default: {
155-
http: ["https://zksync-os-testnet-sophon.zksync.dev"],
156-
},
157-
},
158-
blockExplorers: {
159-
default: {
160-
name: "Sophon Testnet Block Explorer",
161-
url: "https://block-explorer.zksync-os-testnet-sophon.zksync.dev",
162-
},
163-
},
164-
contracts: {
165-
multicall3: {
166-
address: "0x5f4867441d2416cA88B1b3fd38f21811680CD2C8",
167-
blockCreated: 30197,
168-
},
169-
},
170-
testnet: true,
171-
});
172-
173145
const hyperEvm = defineChain({
174146
id: 999,
175147
name: "HyperEVM",
@@ -317,7 +289,6 @@ export const CHAIN_DEFINITIONS: chains.Chain[] = values({
317289
monadMainnet,
318290
arcTestnet,
319291
sonicTestnet,
320-
sophonTestnet,
321292
mocaTestnet,
322293
mocaMainnet,
323294
megaethTestnet,

0 commit comments

Comments
 (0)