System Contracts
Last updated
Last updated
Many EVM instructions require special handling by the System Contracts. Among them are: ORIGIN
, CALLVALUE
, BALANCE
, CREATE
, SHA3
, and others. To see the full detailed list of instructions that require special handling, see .
There are several types of System Contracts from the perspective of how they are handled by the Validium Network Era compilers:
.
.
.
.
.
.
Such storage contracts are accessed with static calls in order to retrieve values for the block, transaction, and other environmental entities: CHAINID
, DIFFICULTY
, BLOCKHASH
, etc.
One good example of such contract is that provides the majority of the environmental data.
Since EVM is not using external calls for these instructions, we must use for their calldata.
Steps to handle such instructions:
Store the calldata for the System Contract call on the auxiliary heap.
Call the System Contract with a static call.
Check the return status code of the call.
if the status code is zero.
Read the ABI data and extract the result. All such System Contracts return a single 256-bit value.
Return the value as the result of the original instruction.
An external call is redirected through the simulator if the following conditions are met:
The Ether value is non-zero.
Calls to the simulator require extra data passed via ABI using registers:
Ether value.
The address of the contract to call.
Passing Ether value in EraVM is implemented by using a combination of:
The topics with a length-prefix are passed via ABI using registers.
The data is passed via the default heap, like on EVM.
However, there are several cases where EraVM needs to allocate memory on the heap and EVM does not. The auxiliary heap is used for these cases:
Returning immutables from the constructor.
Allocating calldata and return data for calling the System Contracts.
While the ordinary heap contains calldata and return data for calls to user contracts, auxiliary heap contains calldata and return data for calls to System Contracts. This ensures better compatibility with EVM as users should be able to call EraVM-specific System Contracts in a transparent way, without System Contracts affecting calldata or return data. This prevents situations where calling System Contracts interferes with the heap layout expected by the contract developer.
For reference, see .
Handling of this function is similar to with one difference:
Since EVM also uses heap to store the calldata for KECCAK256
, the required memory chunk is allocated by the IR generator, and Validium Network Era compiler does not need to use .
For reference, see .
See and on Validium Network Era documentation.
For reference, see LLVM IR codegen for and .
EraVM does not support passing Ether natively, so this is handled by a special System Contract called .
The has the Ether value parameter.
The , which is only set if a call to the is being redirected, that is CREATE
or CREATE2
is called with non-zero Ether.
a special 128-bit register which is a part of the EraVM ;
an captured in the stack frame in a moment of a call.
The process of setting up a value and capturing it is described in details in the section .
For reference, see .
See on Validium Network Era documentation.
For reference, see LLVM IR codegen for and .
Event payloads are sent to a special System Contract called . Like on EVM, the payload consists of topics and data:
For reference, see .
Both and compilers for EraVM operate on , so they cannot control the heap memory allocator which remains a responsibility of emitting the IRs.
For more details on the heaps, refer to the EraVM specification, which describes , their connections to the , and their role in .