core/vm: enable 8024 instructions in Amsterdam

This commit is contained in:
Jared Wasinger 2026-03-02 16:21:23 -05:00
parent 5695fbc156
commit 6ca5f0b737

View file

@ -96,6 +96,7 @@ func newVerkleInstructionSet() JumpTable {
func newAmsterdamInstructionSet() JumpTable {
instructionSet := newOsakaInstructionSet()
enable7843(&instructionSet) // EIP-7843 (SLOTNUM opcode)
enable8024(&instructionSet) // EIP-8024 (Backward compatible SWAPN, DUPN, EXCHANGE)
return validate(instructionSet)
}