pub enum EIVersion {
V1_0,
V1_1,
V1_2,
V1_3,
V1_4,
V1_5,
}
Expand description
The version of the SC environment interface (EI), it deals with the VM hooks available at a certain point in time.
It is not tied to the version of the VM, hence the different numbering.
Variants§
V1_0
This is not necessarily the first version of the EI, but rather the oldest version when we started keeping track of the EI.
V1_1
New hooks added in Q4 2021.
Added a few more managed type & ESDT utilities.
V1_2
New hooks added in Q2 2022. This is the EI version of VM 1.4.
This is the version currently on mainnet.
Added:
- more managed type conversions
- more managed crypto hooks
- big floats
- some managed ESDT properties.
V1_3
Latest VM Hooks version, released with VM 1.5 in January 2024: https://multiversx.com/release/release-sirius-v1-6-7
It adds the new async call functionality (promises).
V1_4
Hooks made available in the Spica release, November 12, 2024: https://multiversx.com/release/release-spica-v1-8-4-0
V1_5
Version planned for Q3 2024.
Implementations§
Trait Implementations§
impl Copy for EIVersion
impl Eq for EIVersion
impl StructuralPartialEq for EIVersion
Auto Trait Implementations§
impl Freeze for EIVersion
impl RefUnwindSafe for EIVersion
impl Send for EIVersion
impl Sync for EIVersion
impl Unpin for EIVersion
impl UnwindSafe for EIVersion
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> InterpretableFrom<&T> for Twhere
T: Clone,
impl<T> InterpretableFrom<&T> for Twhere
T: Clone,
fn interpret_from(from: &T, _context: &InterpreterContext) -> T
Source§impl<T> InterpretableFrom<T> for T
impl<T> InterpretableFrom<T> for T
fn interpret_from(from: T, _context: &InterpreterContext) -> T
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