pub struct Engine {
pub database: Database,
pub exec_context: ExecContext,
pub chain_spec: ChainSpec,
pub chain_extension_handler: ChainExtensionHandler,
/* private fields */
}
Expand description
The off-chain engine.
Fields§
§database: Database
The environment database.
exec_context: ExecContext
The current execution context.
chain_spec: ChainSpec
The chain specification.
chain_extension_handler: ChainExtensionHandler
Handler for registered chain extensions.
Implementations§
Source§impl Engine
impl Engine
Sourcepub fn transfer(&mut self, dest: H160, value: &[u8]) -> Result<(), Error>
pub fn transfer(&mut self, dest: H160, value: &[u8]) -> Result<(), Error>
Transfers value from the contract to the destination account.
Sourcepub fn deposit_event(&mut self, topics: &[u8], data: &[u8])
pub fn deposit_event(&mut self, topics: &[u8], data: &[u8])
Deposits an event identified by the supplied topics and data.
Sourcepub fn set_storage(&mut self, key: &[u8], encoded_value: &[u8]) -> Option<u32>
pub fn set_storage(&mut self, key: &[u8], encoded_value: &[u8]) -> Option<u32>
Writes the encoded value into the storage at the given key. Returns the size of the previously stored value at the key if any.
Sourcepub fn get_storage(&mut self, key: &[u8]) -> Result<&[u8], Error>
pub fn get_storage(&mut self, key: &[u8]) -> Result<&[u8], Error>
Returns the contract storage bytes at the key if any.
Sourcepub fn take_storage(&mut self, key: &[u8]) -> Result<Vec<u8>, Error>
pub fn take_storage(&mut self, key: &[u8]) -> Result<Vec<u8>, Error>
Removes the storage entries at the given key, returning previously stored value at the key if any.
Sourcepub fn contains_storage(&mut self, key: &[u8]) -> Option<u32>
pub fn contains_storage(&mut self, key: &[u8]) -> Option<u32>
Returns the size of the value stored in the contract storage at the key if any.
Sourcepub fn clear_storage(&mut self, key: &[u8]) -> Option<u32>
pub fn clear_storage(&mut self, key: &[u8]) -> Option<u32>
Removes the storage entries at the given key. Returns the size of the previously stored value at the key if any.
Sourcepub fn terminate(&mut self, beneficiary: H160) -> !
pub fn terminate(&mut self, beneficiary: H160) -> !
Remove the calling account and transfer remaining balance.
todo is the following comment still correct? This function never returns. Either the termination was successful and the execution of the destroyed contract is halted. Or it failed during the termination which is considered fatal.
Sourcepub fn value_transferred(&self, output: &mut &mut [u8])
pub fn value_transferred(&self, output: &mut &mut [u8])
Returns the transferred value for the called contract.
Sourcepub fn hash_blake2_256(input: &[u8], output: &mut [u8; 32])
pub fn hash_blake2_256(input: &[u8], output: &mut [u8; 32])
Conduct the BLAKE-2 256-bit hash and place the result into output
.
Sourcepub fn hash_blake2_128(input: &[u8], output: &mut [u8; 16])
pub fn hash_blake2_128(input: &[u8], output: &mut [u8; 16])
Conduct the BLAKE-2 128-bit hash and place the result into output
.
Sourcepub fn hash_sha2_256(input: &[u8], output: &mut [u8; 32])
pub fn hash_sha2_256(input: &[u8], output: &mut [u8; 32])
Conduct the SHA-2 256-bit hash and place the result into output
.
Sourcepub fn hash_keccak_256(input: &[u8], output: &mut [u8; 32])
pub fn hash_keccak_256(input: &[u8], output: &mut [u8; 32])
Conduct the KECCAK 256-bit hash and place the result into output
.
Sourcepub fn block_number(&self, output: &mut &mut [u8])
pub fn block_number(&self, output: &mut &mut [u8])
Returns the current block number.
Sourcepub fn block_timestamp(&self, output: &mut &mut [u8])
pub fn block_timestamp(&self, output: &mut &mut [u8])
Returns the timestamp of the current block.
Sourcepub fn minimum_balance(&self, output: &mut &mut [u8])
pub fn minimum_balance(&self, output: &mut &mut [u8])
Returns the minimum balance that is required for creating an account (i.e. the chain’s existential deposit).
pub fn instantiate( &mut self, _code_hash: &[u8], _gas_limit: u64, _endowment: &[u8], _input: &[u8], _out_address: &mut &mut [u8], _out_return_value: &mut &mut [u8], _salt: &[u8], ) -> Result<(), Error>
pub fn call( &mut self, callee: &[u8], _gas_limit: u64, _value: &[u8], input: &[u8], output: &mut &mut [u8], ) -> Result<(), Error>
Sourcepub fn weight_to_fee(&self, gas: u64, output: &mut &mut [u8])
pub fn weight_to_fee(&self, gas: u64, output: &mut &mut [u8])
Emulates gas price calculation.
Sourcepub fn call_chain_extension(
&mut self,
id: u32,
input: &[u8],
output: &mut &mut [u8],
)
pub fn call_chain_extension( &mut self, id: u32, input: &[u8], output: &mut &mut [u8], )
Calls the chain extension method registered at func_id
with input
.
Source§impl Engine
impl Engine
Sourcepub fn initialize_or_reset(&mut self)
pub fn initialize_or_reset(&mut self)
Resets the environment.
Sourcepub fn get_contract_storage_rw(&self, addr: H160) -> (usize, usize)
pub fn get_contract_storage_rw(&self, addr: H160) -> (usize, usize)
Returns the total number of reads and writes of the contract’s storage.
Sourcepub fn count_reads(&self) -> usize
pub fn count_reads(&self) -> usize
Returns the total number of reads executed.
Sourcepub fn count_writes(&self) -> usize
pub fn count_writes(&self) -> usize
Returns the total number of writes executed.
Sourcepub fn set_caller(&mut self, caller: H160)
pub fn set_caller(&mut self, caller: H160)
Sets a caller for the next call.
Sourcepub fn set_contract(&mut self, caller: H160)
pub fn set_contract(&mut self, caller: H160)
Sets a known contract by adding it to a vector of known contracts accounts
Sourcepub fn set_callee(&mut self, callee: H160)
pub fn set_callee(&mut self, callee: H160)
Sets the callee for the next call.
Sourcepub fn count_used_storage_cells(&self, addr: &H160) -> Result<usize, Error>
pub fn count_used_storage_cells(&self, addr: &H160) -> Result<usize, Error>
Returns the amount of storage cells used by the contract addr
.
Returns None
if the contract addr
is non-existent.
Sourcepub fn advance_block(&mut self)
pub fn advance_block(&mut self)
Advances the chain by a single block.
Sourcepub fn get_callee(&self) -> H160
pub fn get_callee(&self) -> H160
Returns the callee, i.e. the currently executing contract.
Sourcepub fn is_contract(&self, addr: &H160) -> bool
pub fn is_contract(&self, addr: &H160) -> bool
Returns boolean value indicating whether the account is a contract
Sourcepub fn get_emitted_events(&self) -> impl Iterator<Item = EmittedEvent>
pub fn get_emitted_events(&self) -> impl Iterator<Item = EmittedEvent>
Returns the recorded emitted events in order.
Sourcepub fn get_acc_balance(&self, addr: AccountId) -> Result<u128, Error>
pub fn get_acc_balance(&self, addr: AccountId) -> Result<u128, Error>
Returns the current balance of addr
.
Sourcepub fn set_acc_balance(&mut self, addr: AccountId, new_balance: u128)
pub fn set_acc_balance(&mut self, addr: AccountId, new_balance: u128)
Sets the balance of addr
to new_balance
.
Sourcepub fn get_balance(&self, addr: H160) -> Result<U256, Error>
pub fn get_balance(&self, addr: H160) -> Result<U256, Error>
Returns the current balance of addr
.
Sourcepub fn set_balance(&mut self, addr: H160, new_balance: U256)
pub fn set_balance(&mut self, addr: H160, new_balance: U256)
Sets the balance of addr
to new_balance
.
Sourcepub fn set_value_transferred(&mut self, value: U256)
pub fn set_value_transferred(&mut self, value: U256)
Sets the value transferred from the caller to the callee as part of the call.
Sourcepub fn set_block_timestamp(&mut self, new_block_timestamp: u64)
pub fn set_block_timestamp(&mut self, new_block_timestamp: u64)
Set the block timestamp for the execution context.
Sourcepub fn set_block_number(&mut self, new_block_number: u32)
pub fn set_block_number(&mut self, new_block_number: u32)
Set the block number for the execution context.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Engine
impl !RefUnwindSafe for Engine
impl !Send for Engine
impl !Sync for Engine
impl Unpin for Engine
impl !UnwindSafe for Engine
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
§impl<T> Conv for T
impl<T> Conv for T
§impl<T> FmtForward for T
impl<T> FmtForward for T
§fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
self
to use its Binary
implementation when Debug
-formatted.§fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
self
to use its Display
implementation when
Debug
-formatted.§fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
self
to use its LowerExp
implementation when
Debug
-formatted.§fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
self
to use its LowerHex
implementation when
Debug
-formatted.§fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
self
to use its Octal
implementation when Debug
-formatted.§fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
self
to use its Pointer
implementation when
Debug
-formatted.§fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
self
to use its UpperExp
implementation when
Debug
-formatted.§fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
self
to use its UpperHex
implementation when
Debug
-formatted.§fn fmt_list(self) -> FmtList<Self>where
&'a Self: for<'a> IntoIterator,
fn fmt_list(self) -> FmtList<Self>where
&'a Self: for<'a> IntoIterator,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more§impl<T, Outer> IsWrappedBy<Outer> for T
impl<T, Outer> IsWrappedBy<Outer> for T
§impl<T> Pipe for Twhere
T: ?Sized,
impl<T> Pipe for Twhere
T: ?Sized,
§fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
§fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
self
and passes that borrow into the pipe function. Read more§fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
self
and passes that borrow into the pipe function. Read more§fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
§fn pipe_borrow_mut<'a, B, R>(
&'a mut self,
func: impl FnOnce(&'a mut B) -> R,
) -> R
fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R, ) -> R
§fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
self
, then passes self.as_ref()
into the pipe function.§fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
self
, then passes self.as_mut()
into the pipe
function.§fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
self
, then passes self.deref()
into the pipe function.§impl<T> Tap for T
impl<T> Tap for T
§fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
Borrow<B>
of a value. Read more§fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
BorrowMut<B>
of a value. Read more§fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
AsRef<R>
view of a value. Read more§fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
AsMut<R>
view of a value. Read more§fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
Deref::Target
of a value. Read more§fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
Deref::Target
of a value. Read more§fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
.tap()
only in debug builds, and is erased in release builds.§fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
.tap_mut()
only in debug builds, and is erased in release
builds.§fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
.tap_borrow()
only in debug builds, and is erased in release
builds.§fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
.tap_borrow_mut()
only in debug builds, and is erased in release
builds.§fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
.tap_ref()
only in debug builds, and is erased in release
builds.§fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
.tap_ref_mut()
only in debug builds, and is erased in release
builds.§fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
.tap_deref()
only in debug builds, and is erased in release
builds.§impl<T> TryConv for T
impl<T> TryConv for T
§impl<S, T> UncheckedInto<T> for Swhere
T: UncheckedFrom<S>,
impl<S, T> UncheckedInto<T> for Swhere
T: UncheckedFrom<S>,
§fn unchecked_into(self) -> T
fn unchecked_into(self) -> T
unchecked_from
.