.. py:module:: ethereum.shanghai.vm.instructions.storage Ethereum Virtual Machine (EVM) Storage Instructions ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ .. contents:: Table of Contents :backlinks: none :local: Introduction ------------ Implementations of the EVM storage related instructions. .. only:: stage1 Module Contents --------------- Functions ~~~~~~~~~ .. autoapisummary:: :nosignatures: ethereum.shanghai.vm.instructions.storage.sload ethereum.shanghai.vm.instructions.storage.sstore Module Details --------------- sload ~~~~~ .. function:: sload(evm: ethereum.shanghai.vm.Evm) -> None :noindexentry: Loads to the stack, the value corresponding to a certain key from the storage of the current account. :param evm: The current EVM frame. .. undocinclude:: /../src/ethereum/shanghai/vm/instructions/storage.py :language: python :pyobject: sload sstore ~~~~~~ .. function:: sstore(evm: ethereum.shanghai.vm.Evm) -> None :noindexentry: Stores a value at a certain key in the current context's storage. :param evm: The current EVM frame. .. undocinclude:: /../src/ethereum/shanghai/vm/instructions/storage.py :language: python :pyobject: sstore