pub struct CreateParams<E, ContractRef, Limits, Args, R> { /* private fields */ }
Expand description
Builds up contract instantiations.
Implementations§
source§impl<E, ContractRef, Limits, Args, R> CreateParams<E, ContractRef, Limits, Args, R>where
E: Environment,
impl<E, ContractRef, Limits, Args, R> CreateParams<E, ContractRef, Limits, Args, R>where
E: Environment,
sourcepub fn exec_input(&self) -> &ExecutionInput<Args>
pub fn exec_input(&self) -> &ExecutionInput<Args>
The raw encoded input data.
sourcepub fn update_selector(&mut self, selector: Selector)
pub fn update_selector(&mut self, selector: Selector)
Modify the selector.
Useful when using the CreateParams
generated as part of the
ContractRef
, but using a custom selector.
source§impl<E, ContractRef, Args, R> CreateParams<E, ContractRef, LimitParamsV2, Args, R>where
E: Environment,
impl<E, ContractRef, Args, R> CreateParams<E, ContractRef, LimitParamsV2, Args, R>where
E: Environment,
sourcepub fn ref_time_limit(&self) -> u64
pub fn ref_time_limit(&self) -> u64
Gets the ref_time_limit
part of the weight limit for the contract instantiation.
sourcepub fn proof_size_limit(&self) -> u64
pub fn proof_size_limit(&self) -> u64
Gets the proof_size_limit
part of the weight limit for the contract
instantiation.
sourcepub fn storage_deposit_limit(&self) -> Option<&U256>
pub fn storage_deposit_limit(&self) -> Option<&U256>
Gets the storage_deposit_limit
for the contract instantiation.
source§impl<E, ContractRef, Limits, Args, R> CreateParams<E, ContractRef, Limits, Args, R>where
E: Environment,
impl<E, ContractRef, Limits, Args, R> CreateParams<E, ContractRef, Limits, Args, R>where
E: Environment,
sourcepub fn salt_bytes(&self) -> &Option<[u8; 32]>
pub fn salt_bytes(&self) -> &Option<[u8; 32]>
The salt for determining the hash for the contract account ID.
source§impl<E, ContractRef, Args, R> CreateParams<E, ContractRef, LimitParamsV2, Args, R>where
E: Environment,
ContractRef: FromAddr + ContractReverseReference,
<ContractRef as ContractReverseReference>::Type: ContractConstructorDecoder + ContractMessageDecoder,
Args: Encode,
R: ConstructorReturnType<ContractRef>,
impl<E, ContractRef, Args, R> CreateParams<E, ContractRef, LimitParamsV2, Args, R>where
E: Environment,
ContractRef: FromAddr + ContractReverseReference,
<ContractRef as ContractReverseReference>::Type: ContractConstructorDecoder + ContractMessageDecoder,
Args: Encode,
R: ConstructorReturnType<ContractRef>,
sourcepub fn instantiate(&self) -> <R as ConstructorReturnType<ContractRef>>::Output
pub fn instantiate(&self) -> <R as ConstructorReturnType<ContractRef>>::Output
todo Instantiates the contract and returns its account ID back to the caller.
§Panics
This method panics if it encounters an ink::env::Error
or an
[ink::primitives::LangError
][ink_primitives::LangError
]. If you want to handle
those use the try_instantiate
method
instead.
sourcepub fn try_instantiate(
&self,
) -> Result<ConstructorResult<<R as ConstructorReturnType<ContractRef>>::Output>, Error>
pub fn try_instantiate( &self, ) -> Result<ConstructorResult<<R as ConstructorReturnType<ContractRef>>::Output>, Error>
Instantiates the contract and returns its account ID back to the caller.
§Note
On failure this returns an outer ink::env::Error
or inner
[ink::primitives::LangError
][ink_primitives::LangError
], both of which can be
handled by the caller.
Trait Implementations§
Auto Trait Implementations§
impl<E, ContractRef, Limits, Args, R> Freeze for CreateParams<E, ContractRef, Limits, Args, R>
impl<E, ContractRef, Limits, Args, R> RefUnwindSafe for CreateParams<E, ContractRef, Limits, Args, R>where
Limits: RefUnwindSafe,
Args: RefUnwindSafe,
impl<E, ContractRef, Limits, Args, R> Send for CreateParams<E, ContractRef, Limits, Args, R>
impl<E, ContractRef, Limits, Args, R> Sync for CreateParams<E, ContractRef, Limits, Args, R>
impl<E, ContractRef, Limits, Args, R> Unpin for CreateParams<E, ContractRef, Limits, Args, R>
impl<E, ContractRef, Limits, Args, R> UnwindSafe for CreateParams<E, ContractRef, Limits, Args, R>where
Limits: UnwindSafe,
Args: UnwindSafe,
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> CheckedConversion for T
impl<T> CheckedConversion for T
§fn checked_from<T>(t: T) -> Option<Self>where
Self: TryFrom<T>,
fn checked_from<T>(t: T) -> Option<Self>where
Self: TryFrom<T>,
§fn checked_into<T>(self) -> Option<T>where
Self: TryInto<T>,
fn checked_into<T>(self) -> Option<T>where
Self: TryInto<T>,
§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<Src, Dest> IntoTuple<Dest> for Srcwhere
Dest: FromTuple<Src>,
impl<Src, Dest> IntoTuple<Dest> for Srcwhere
Dest: FromTuple<Src>,
fn into_tuple(self) -> Dest
§impl<T> IsType<T> for T
impl<T> IsType<T> for T
§impl<T, Outer> IsWrappedBy<Outer> for T
impl<T, Outer> IsWrappedBy<Outer> for T
§impl<T> SaturatedConversion for T
impl<T> SaturatedConversion for T
§fn saturated_from<T>(t: T) -> Selfwhere
Self: UniqueSaturatedFrom<T>,
fn saturated_from<T>(t: T) -> Selfwhere
Self: UniqueSaturatedFrom<T>,
§fn saturated_into<T>(self) -> Twhere
Self: UniqueSaturatedInto<T>,
fn saturated_into<T>(self) -> Twhere
Self: UniqueSaturatedInto<T>,
T
. Read more§impl<T, U> TryIntoKey<U> for Twhere
U: TryFromKey<T>,
impl<T, U> TryIntoKey<U> for Twhere
U: TryFromKey<T>,
type Error = <U as TryFromKey<T>>::Error
fn try_into_key(self) -> Result<U, <U as TryFromKey<T>>::Error>
§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
.§impl<T, S> UniqueSaturatedInto<T> for S
impl<T, S> UniqueSaturatedInto<T> for S
§fn unique_saturated_into(self) -> T
fn unique_saturated_into(self) -> T
T
.