EVM to other contract calls
How contract calls happen from the EVM side in AppLayer.
For calls from the EVM to another contract, the ContractHost::call()
function plays a crucial role. It is tasked with creating and handling calls to other contracts, encapsulating the complexity of contract interaction within a simple interface:
This function is designed to handle both C++ and EVM contract calls, as shown below:
Last updated