Stop#
Our first opcode! Stop is a very simple. All it does is it halts execution by setting the stop_flag to True.
def stop(evm):
    evm.stop_flag = True
Our first opcode! Stop is a very simple. All it does is it halts execution by setting the stop_flag to True.
def stop(evm):
    evm.stop_flag = True