Versions in this module Expand all Collapse all v0 v0.5.6 Jul 16, 2024 v0.0.1 Jun 28, 2024 Changes in this version + var ErrAddrProhibited = errors.New("prohibited address cannot be sender or created contract address") + var ErrCodeStoreOutOfGas = errors.New("contract creation code storage out of gas") + var ErrContractAddressCollision = errors.New("contract address collision") + var ErrDepth = errors.New("max call depth exceeded") + var ErrExecutionReverted = errors.New("execution reverted") + var ErrGasUintOverflow = errors.New("gas uint64 overflow") + var ErrInsufficientBalance = errors.New("insufficient balance for transfer") + var ErrInvalidCode = errors.New("invalid code: must not begin with 0xef") + var ErrInvalidCoinbase = errors.New("invalid coinbase") + var ErrInvalidJump = errors.New("invalid jump destination") + var ErrMaxCodeSizeExceeded = errors.New("max code size exceeded") + var ErrMaxInitCodeSizeExceeded = errors.New("max initcode size exceeded") + var ErrNonceUintOverflow = errors.New("nonce uint64 overflow") + var ErrOutOfGas = errors.New("out of gas") + var ErrReturnDataOutOfBounds = errors.New("return data out of bounds") + var ErrSenderAddressNotAllowListed = errors.New("cannot issue transaction from non-allow listed address") + var ErrWriteProtection = errors.New("write protection")