We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The current message differs from the reference EELS one.
struct Message { bytecode: felt*, bytecode_len: felt, valid_jumpdests_start: DictAccess*, valid_jumpdests: DictAccess*, calldata: felt*, calldata_len: felt, value: Uint256*, caller: felt, parent: Parent*, address: felt, code_address: felt, read_only: felt, is_create: felt, depth: felt, env: Environment*, cairo_precompile_called: felt, }
@dataclass class Message: """ Items that are used by contract creation or message call. """ caller: Address target: Union[Bytes0, Address] current_target: Address gas: Uint value: U256 data: Bytes code_address: Optional[Address] code: Bytes depth: Uint should_transfer_value: bool is_static: bool accessed_addresses: Set[Address] accessed_storage_keys: Set[Tuple[Address, Bytes32]] parent_evm: Optional["Evm"]
The content you are editing has changed. Please copy your edits and refresh the page.
read_only
is_static
address
target
cairo_precompile_called
calldata*
data
bytecode*
code
current_target
should_transfer_value
accessed_addresses
accessed_storage_keys
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Why
The current message differs from the reference EELS one.
What
Tasks
The text was updated successfully, but these errors were encountered: