You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The code_address field has been added to the evmc_message type. It represents the address of an account from which the code is being executed and is useful for DELEGATECALL implementations. #611#615
The evmc_message::destination field has been renamed to evmc_message::recipient to clarify its purpose and match the naming from the Yellow Paper. #616
The evmc_storage_status has been extended to provide information about every possible case of storage net gas metering (EIP-2200). #661
The selfdestruct method returns the information if the given address has not been registered as selfdestructed yet. #662
C++: The evmc::result has been renamed to evmc::Result for consistency with C++ types of similar kind. #665
C++: The HostContext does not cache transaction context (evmc_tx_context) anymore. #631
Go: The create2Salt parameter has been removed from the VM.Execute(). #612