Skip to content

Commit 982bb95

Browse files
authored
chore: avoid extra fetch for zk chains (#5611)
1 parent 1d2b3c7 commit 982bb95

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

packages/thirdweb/src/utils/any-evm/zksync/isZkSyncChain.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,10 @@ export async function isZkSyncChain(chain: Chain) {
2424
chain.id === 978658 ||
2525
chain.id === 531050104 ||
2626
chain.id === 4457845 ||
27-
chain.id === 2741
27+
chain.id === 2741 ||
28+
chain.id === 240 ||
29+
chain.id === 61166 ||
30+
chain.id === 555271
2831
) {
2932
return true;
3033
}

0 commit comments

Comments
 (0)