pub type JournaledState = JournalInner<JournalEntry>;
Aliased Type§
pub struct JournaledState {
pub state: HashMap<Address, Account, RandomState>,
pub transient_storage: HashMap<(Address, Uint<256, 4>), Uint<256, 4>, RandomState>,
pub logs: Vec<Log>,
pub depth: usize,
pub journal: Vec<JournalEntry>,
pub spec: SpecId,
pub warm_preloaded_addresses: HashSet<Address, RandomState>,
pub precompiles: HashSet<Address, RandomState>,
}
Fields§
§state: HashMap<Address, Account, RandomState>
The current state
transient_storage: HashMap<(Address, Uint<256, 4>), Uint<256, 4>, RandomState>
Transient storage that is discarded after every transaction.
See EIP-1153.
logs: Vec<Log>
Emitted logs
depth: usize
The current call stack depth
journal: Vec<JournalEntry>
The journal of state changes, one for each call
spec: SpecId
The spec ID for the EVM. Spec is required for some journal entries and needs to be set for JournalInner to be functional.
If spec is set it assumed that precompile addresses are set as well for this particular spec.
This spec is used for two things:
warm_preloaded_addresses: HashSet<Address, RandomState>
Warm loaded addresses are used to check if loaded address should be considered cold or warm loaded when the account is first accessed.
Note that this not include newly loaded accounts, account and storage
is considered warm if it is found in the State
.
precompiles: HashSet<Address, RandomState>
Precompile addresses
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 224 bytes
Implementations
§impl<ENTRY> JournalInner<ENTRY>where
ENTRY: JournalEntryTr,
impl<ENTRY> JournalInner<ENTRY>where
ENTRY: JournalEntryTr,
pub fn new() -> JournalInner<ENTRY>
pub fn new() -> JournalInner<ENTRY>
Creates new JournalInner
.
warm_preloaded_addresses
is used to determine if address is considered warm loaded.
In ordinary case this is precompile or beneficiary.
pub fn clear_and_take_output(&mut self) -> JournalOutput
pub fn clear_and_take_output(&mut self) -> JournalOutput
Take the JournalOutput
and clears the journal by resetting it to initial state.
Note: Precompile addresses and spec are preserved and initial state of warm_preloaded_addresses will contain precompiles addresses. Precompile addresses
pub fn state(&mut self) -> &mut HashMap<Address, Account, RandomState>
pub fn state(&mut self) -> &mut HashMap<Address, Account, RandomState>
Return reference to state.
pub fn set_spec_id(&mut self, spec: SpecId)
pub fn set_spec_id(&mut self, spec: SpecId)
Sets SpecId.
pub fn touch(&mut self, address: Address)
pub fn touch(&mut self, address: Address)
Mark account as touched as only touched accounts will be added to state. This is especially important for state clear where touched empty accounts needs to be removed from state.
pub fn set_code_with_hash(
&mut self,
address: Address,
code: Bytecode,
hash: FixedBytes<32>,
)
pub fn set_code_with_hash( &mut self, address: Address, code: Bytecode, hash: FixedBytes<32>, )
Set code and its hash to the account.
Note: Assume account is warm and that hash is calculated from code.
pub fn set_code(&mut self, address: Address, code: Bytecode)
pub fn set_code(&mut self, address: Address, code: Bytecode)
Use it only if you know that acc is warm.
Assume account is warm.
In case of EIP-7702 code with zero address, the bytecode will be erased.
pub fn inc_nonce(&mut self, address: Address) -> Option<u64>
pub fn inc_nonce(&mut self, address: Address) -> Option<u64>
Increments the nonce of the account.
§Returns
Returns the new nonce if it did not overflow, otherwise returns None
.
pub fn transfer<DB>(
&mut self,
db: &mut DB,
from: Address,
to: Address,
balance: Uint<256, 4>,
) -> Result<Option<TransferError>, <DB as Database>::Error>where
DB: Database,
pub fn transfer<DB>(
&mut self,
db: &mut DB,
from: Address,
to: Address,
balance: Uint<256, 4>,
) -> Result<Option<TransferError>, <DB as Database>::Error>where
DB: Database,
Transfers balance from two accounts. Returns error if sender balance is not enough.
pub fn create_account_checkpoint(
&mut self,
caller: Address,
target_address: Address,
balance: Uint<256, 4>,
spec_id: SpecId,
) -> Result<JournalCheckpoint, TransferError>
pub fn create_account_checkpoint( &mut self, caller: Address, target_address: Address, balance: Uint<256, 4>, spec_id: SpecId, ) -> Result<JournalCheckpoint, TransferError>
Creates account or returns false if collision is detected.
There are few steps done:
- Make created account warm loaded (AccessList) and this should be done before subroutine checkpoint is created.
- Check if there is collision of newly created account with existing one.
- Mark created account as created.
- Add fund to created account
- Increment nonce of created account if SpuriousDragon is active
- Decrease balance of caller account.
§Panics
Panics if the caller is not loaded inside the EVM state.
This should have been done inside create_inner
.
pub fn checkpoint(&mut self) -> JournalCheckpoint
pub fn checkpoint(&mut self) -> JournalCheckpoint
Makes a checkpoint that in case of Revert can bring back state to this point.
pub fn checkpoint_commit(&mut self)
pub fn checkpoint_commit(&mut self)
Commits the checkpoint.
pub fn checkpoint_revert(&mut self, checkpoint: JournalCheckpoint)
pub fn checkpoint_revert(&mut self, checkpoint: JournalCheckpoint)
Reverts all changes to state until given checkpoint.
pub fn selfdestruct<DB>(
&mut self,
db: &mut DB,
address: Address,
target: Address,
) -> Result<StateLoad<SelfDestructResult>, <DB as Database>::Error>where
DB: Database,
pub fn selfdestruct<DB>(
&mut self,
db: &mut DB,
address: Address,
target: Address,
) -> Result<StateLoad<SelfDestructResult>, <DB as Database>::Error>where
DB: Database,
Performs selfdestruct action. Transfers balance from address to target. Check if target exist/is_cold
Note: Balance will be lost if address and target are the same BUT when current spec enables Cancun, this happens only when the account associated to address is created in the same tx
§References:
pub fn load_account<DB>(
&mut self,
db: &mut DB,
address: Address,
) -> Result<StateLoad<&mut Account>, <DB as Database>::Error>where
DB: Database,
pub fn load_account<DB>(
&mut self,
db: &mut DB,
address: Address,
) -> Result<StateLoad<&mut Account>, <DB as Database>::Error>where
DB: Database,
Loads account into memory. return if it is cold or warm accessed
pub fn initial_account_load<DB>(
&mut self,
db: &mut DB,
address: Address,
storage_keys: impl IntoIterator<Item = Uint<256, 4>>,
) -> Result<StateLoad<&mut Account>, <DB as Database>::Error>where
DB: Database,
👎Deprecated: Use load_account_optional_with_storage
instead
pub fn initial_account_load<DB>(
&mut self,
db: &mut DB,
address: Address,
storage_keys: impl IntoIterator<Item = Uint<256, 4>>,
) -> Result<StateLoad<&mut Account>, <DB as Database>::Error>where
DB: Database,
load_account_optional_with_storage
insteadInitial load of account. This load will not be tracked inside journal
pub fn load_account_delegated<DB>(
&mut self,
db: &mut DB,
address: Address,
) -> Result<StateLoad<AccountLoad>, <DB as Database>::Error>where
DB: Database,
pub fn load_account_delegated<DB>(
&mut self,
db: &mut DB,
address: Address,
) -> Result<StateLoad<AccountLoad>, <DB as Database>::Error>where
DB: Database,
Loads account into memory. If account is EIP-7702 type it will additionally load delegated account.
It will mark both this and delegated account as warm loaded.
Returns information about the account (If it is empty or cold loaded) and if present the information about the delegated account (If it is cold loaded).
pub fn load_code<DB>(
&mut self,
db: &mut DB,
address: Address,
) -> Result<StateLoad<&mut Account>, <DB as Database>::Error>where
DB: Database,
pub fn load_code<DB>(
&mut self,
db: &mut DB,
address: Address,
) -> Result<StateLoad<&mut Account>, <DB as Database>::Error>where
DB: Database,
Loads account and its code. If account is already loaded it will load its code.
It will mark account as warm loaded. If not existing Database will be queried for data.
In case of EIP-7702 delegated account will not be loaded,
Self::load_account_delegated
should be used instead.
pub fn load_account_optional<DB>(
&mut self,
db: &mut DB,
address: Address,
load_code: bool,
) -> Result<StateLoad<&mut Account>, <DB as Database>::Error>where
DB: Database,
pub fn load_account_optional<DB>(
&mut self,
db: &mut DB,
address: Address,
load_code: bool,
) -> Result<StateLoad<&mut Account>, <DB as Database>::Error>where
DB: Database,
Loads account. If account is already loaded it will be marked as warm.
pub fn load_account_optional_with_storage<DB>(
&mut self,
db: &mut DB,
address: Address,
load_code: bool,
storage_keys: impl IntoIterator<Item = Uint<256, 4>>,
) -> Result<StateLoad<&mut Account>, <DB as Database>::Error>where
DB: Database,
pub fn load_account_optional_with_storage<DB>(
&mut self,
db: &mut DB,
address: Address,
load_code: bool,
storage_keys: impl IntoIterator<Item = Uint<256, 4>>,
) -> Result<StateLoad<&mut Account>, <DB as Database>::Error>where
DB: Database,
Loads account. If account is already loaded it will be marked as warm.
pub fn sload<DB>(
&mut self,
db: &mut DB,
address: Address,
key: Uint<256, 4>,
) -> Result<StateLoad<Uint<256, 4>>, <DB as Database>::Error>where
DB: Database,
pub fn sload<DB>(
&mut self,
db: &mut DB,
address: Address,
key: Uint<256, 4>,
) -> Result<StateLoad<Uint<256, 4>>, <DB as Database>::Error>where
DB: Database,
pub fn sstore<DB>(
&mut self,
db: &mut DB,
address: Address,
key: Uint<256, 4>,
new: Uint<256, 4>,
) -> Result<StateLoad<SStoreResult>, <DB as Database>::Error>where
DB: Database,
pub fn sstore<DB>(
&mut self,
db: &mut DB,
address: Address,
key: Uint<256, 4>,
new: Uint<256, 4>,
) -> Result<StateLoad<SStoreResult>, <DB as Database>::Error>where
DB: Database,
Stores storage slot.
And returns (original,present,new) slot value.
Note: Account should already be present in our state.
pub fn tload(&mut self, address: Address, key: Uint<256, 4>) -> Uint<256, 4>
pub fn tload(&mut self, address: Address, key: Uint<256, 4>) -> Uint<256, 4>
Read transient storage tied to the account.
EIP-1153: Transient storage opcodes
Trait Implementations
§impl<ENTRY> Clone for JournalInner<ENTRY>where
ENTRY: Clone,
impl<ENTRY> Clone for JournalInner<ENTRY>where
ENTRY: Clone,
§fn clone(&self) -> JournalInner<ENTRY>
fn clone(&self) -> JournalInner<ENTRY>
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more