From 68d9187987298242c1bce5bb63507bde8fb3c81a Mon Sep 17 00:00:00 2001 From: Bit D13 Date: Fri, 11 Apr 2025 11:48:22 +0300 Subject: [PATCH] fix: bump max supported AVM version to 11 (was 10 but with 11 opcode support) --- pyteal/compiler/compiler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyteal/compiler/compiler.py b/pyteal/compiler/compiler.py index d07bf1167..b6937d06a 100644 --- a/pyteal/compiler/compiler.py +++ b/pyteal/compiler/compiler.py @@ -35,7 +35,7 @@ from pyteal.util import algod_with_assertion -MAX_PROGRAM_VERSION = 10 +MAX_PROGRAM_VERSION = 11 FRAME_POINTERS_VERSION = 8 DEFAULT_SCRATCH_SLOT_OPTIMIZE_VERSION = 9 MIN_PROGRAM_VERSION = 2