Skip to content

Commit 2e03fe5

Browse files
committed
correct type
1 parent 8b5982a commit 2e03fe5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export async function isZkSyncChain(chain: Chain) {
2121
// fallback to checking the stack on rpc
2222
try {
2323
const chainMetadata = await getChainMetadata(chain);
24-
return chainMetadata.stackType === "zksync-stack";
24+
return chainMetadata.stackType === "zksync_stack";
2525
} catch {
2626
// If the network check fails, assume it's not a ZkSync chain
2727
return false;

0 commit comments

Comments
 (0)