Versions in this module Expand all Collapse all v3 v3.0.1 Dec 26, 2023 Changes in this version + var ErrExecutionReverted = errors.New("execution reverted") + var ErrVerifyInput = errors.New("incorrect verify input format") v3.0.0 Dec 23, 2022 Changes in this version + var ErrBN256BadPairingInput = errors.New("bn256 bad pairing input") + var ErrInsufficientBalance = errors.New("insufficient balance") + var ErrInvalidEVMInstance = errors.New("invalid EVM instance") + var ErrInvalidJumpDest = errors.New("invalid jump dest") + var ErrJumpOutOfBounds = errors.New("jump out of range") + var ErrJumpToNoneOpCode = errors.New("jump to non-OpCode") + var ErrOutOfGas = errors.New("out of gas") + var ErrOutOfMemory = errors.New("out of memory") + var ErrReturnDataCopyOutOfBounds = errors.New("return data copy out of bounds") + var ErrStackOverFlow = errors.New("stack over flow") + var ErrStackUnderFlow = errors.New("stack under flow") + var ErrStorageNotInitialized = errors.New("storage not initialized") + var ErrWriteProtection = errors.New("write protection") + func InvalidOpCode(code byte) error + func NoSuchDataInTheStorage(err error) error Other modules containing this package chainmaker.org/chainmaker/vm-evm/v2