|
| 1 | +# The `inner_models.rs` Module in the Rust Ethereum Virtual Machine (EVM) |
| 2 | + |
| 3 | +The `inner_models.rs` module within this Rust EVM implementation encompasses a collection of structs and enums that are used as internal models within the EVM. These models represent various aspects of EVM operations such as call and create inputs, call context, value transfers, and the result of self-destruction operations. |
| 4 | + |
| 5 | +## `CallInputs` Struct |
| 6 | + |
| 7 | +The `CallInputs` struct is used to encapsulate the inputs to a smart contract call in the EVM. |
| 8 | + |
| 9 | +```rust |
| 10 | +pub struct CallInputs { |
| 11 | + pub contract: B160, |
| 12 | + pub transfer: Transfer, |
| 13 | + pub input: Bytes, |
| 14 | + pub gas_limit: u64, |
| 15 | + pub context: CallContext, |
| 16 | + pub is_static: bool, |
| 17 | +} |
| 18 | +``` |
| 19 | + |
| 20 | +This struct includes the target contract address, the value to be transferred (if any), the input data, the gas limit for the call, the call context, and a boolean indicating if the call is a static call (a read-only operation). |
| 21 | + |
| 22 | +## `CreateInputs` Struct |
| 23 | + |
| 24 | +The `CreateInputs` struct encapsulates the inputs for creating a new smart contract. |
| 25 | + |
| 26 | +```rust |
| 27 | +pub struct CreateInputs { |
| 28 | + pub caller: B160, |
| 29 | + pub scheme: CreateScheme, |
| 30 | + pub value: U256, |
| 31 | + pub init_code: Bytes, |
| 32 | + pub gas_limit: u64, |
| 33 | +} |
| 34 | +``` |
| 35 | + |
| 36 | +This includes the address of the creator, the creation scheme, the value to be transferred, the initialization code for the new contract, and the gas limit for the creation operation. |
| 37 | + |
| 38 | +## `CallScheme` Enum |
| 39 | + |
| 40 | +The `CallScheme` enum represents the type of call being made to a smart contract. |
| 41 | + |
| 42 | +```rust |
| 43 | +pub enum CallScheme { |
| 44 | + Call, |
| 45 | + CallCode, |
| 46 | + DelegateCall, |
| 47 | + StaticCall, |
| 48 | +} |
| 49 | +``` |
| 50 | + |
| 51 | +The different types of calls (`CALL`, `CALLCODE`, `DELEGATECALL`, `STATICCALL`) represent different modes of interaction with a smart contract, each with its own semantics concerning the treatment of the message sender, value transfer, and the context in which the called code executes. |
| 52 | + |
| 53 | +## `CallContext` Struct |
| 54 | + |
| 55 | +The `CallContext` struct encapsulates the context of a smart contract call. |
| 56 | + |
| 57 | +```rust |
| 58 | +pub struct CallContext { |
| 59 | + pub address: B160, |
| 60 | + pub caller: B160, |
| 61 | + pub code_address: B160, |
| 62 | + pub apparent_value: U256, |
| 63 | + pub scheme: CallScheme, |
| 64 | +} |
| 65 | +``` |
| 66 | + |
| 67 | +This includes the executing contract's address, the caller's address, the address from which the contract code was loaded, the apparent value of the call (for `DELEGATECALL` and `CALLCODE`), and the call scheme. |
| 68 | + |
| 69 | +## `Transfer` Struct |
| 70 | + |
| 71 | +The `Transfer` struct represents a value transfer between two accounts. |
| 72 | + |
| 73 | +```rust |
| 74 | +pub struct Transfer { |
| 75 | + pub source: B160, |
| 76 | + pub target: B160, |
| 77 | + pub value: U256, |
| 78 | +} |
| 79 | +``` |
| 80 | + |
| 81 | +## `SelfDestructResult` Struct |
| 82 | + |
| 83 | +Finally, the `SelfDestructResult` struct captures the result of a self-destruction operation on a contract. |
| 84 | + |
| 85 | +```rust |
| 86 | +pub struct SelfDestructResult { |
| 87 | + pub had_value: bool, |
| 88 | + pub target_exists: bool, |
| 89 | + pub is_cold: bool, |
| 90 | + pub previously_destroyed: bool, |
| 91 | +} |
| 92 | +``` |
| 93 | + |
| 94 | +In summary, the `inner_models.rs` module provides several crucial data structures that facilitate the representation and handling of various EVM operations and their associated data within this Rust EVM implementation. |
0 commit comments