From b7c480813a92315c96e670d6fa9b80ee061a8e65 Mon Sep 17 00:00:00 2001 From: eitjuh Date: Wed, 10 Jun 2026 09:44:28 +0200 Subject: [PATCH] Fix Osaka playground compilation Map the Osaka fork to the latest EVM target supported by the pinned Solidity compiler so the playground can compile again. --- util/compiler.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/compiler.ts b/util/compiler.ts index 282222c9..9b83cd67 100644 --- a/util/compiler.ts +++ b/util/compiler.ts @@ -27,7 +27,7 @@ export const getTargetEvmVersion = (forkName: string | undefined) => { ) ) { return 'london' - } else if (forkName === EOF_FORK_NAME) { + } else if (forkName === 'osaka' || forkName === EOF_FORK_NAME) { return 'prague' } return forkName