pub struct CallApi<'api> { /* private fields */ }
Implementations§
source§impl<'api> CallApi<'api>
impl<'api> CallApi<'api>
sourcepub fn transfer(
&self,
dest: MultiAddress<AccountId, u32>,
value: u128
) -> Result<WrappedCall<'api>>
pub fn transfer(
&self,
dest: MultiAddress<AccountId, u32>,
value: u128
) -> Result<WrappedCall<'api>>
Transfer some liquid free balance to another account.
transfer
will set the FreeBalance
of the sender and receiver.
It will decrease the total issuance of the system by the TransferFee
.
The dispatch origin for this call must be Signed
by the transactor.
- Dependent on arguments but not critical, given proper implementations for input config types. See related functions below.
- It contains a limited number of reads and writes internally and no complex computation.
Related functions:
ensure_can_withdraw
is always called internally but has a bounded complexity.- Transferring balances to accounts that did not exist before will cause
T::OnNewAccount::on_new_account
to be called.
- Base Weight: 73.64 µs, worst case scenario (account created, account removed)
- DB Weight: 1 Read and 1 Write to destination account.
- Origin account is already in memory, so no DB operations for them.
sourcepub fn transfer_with_memo(
&self,
dest: MultiAddress<AccountId, u32>,
value: u128,
memo: Option<Memo>
) -> Result<WrappedCall<'api>>
pub fn transfer_with_memo(
&self,
dest: MultiAddress<AccountId, u32>,
value: u128,
memo: Option<Memo>
) -> Result<WrappedCall<'api>>
Transfer the native currency with the help of identifier string this functionality can help to differentiate the transfers.
- Base Weight: 73.64 µs, worst case scenario (account created, account removed)
- DB Weight: 1 Read and 1 Write to destination account.
- Origin account is already in memory, so no DB operations for them.
sourcepub fn deposit_block_reward_reserve_balance(
&self,
value: u128
) -> Result<WrappedCall<'api>>
pub fn deposit_block_reward_reserve_balance(
&self,
value: u128
) -> Result<WrappedCall<'api>>
Move some POLYX from balance of self to balance of BRR.
sourcepub fn set_balance(
&self,
who: MultiAddress<AccountId, u32>,
new_free: u128,
new_reserved: u128
) -> Result<WrappedCall<'api>>
pub fn set_balance(
&self,
who: MultiAddress<AccountId, u32>,
new_free: u128,
new_reserved: u128
) -> Result<WrappedCall<'api>>
Set the balances of a given account.
This will alter FreeBalance
and ReservedBalance
in storage. it will
also decrease the total issuance of the system (TotalIssuance
).
The dispatch origin for this call is root
.
sourcepub fn force_transfer(
&self,
source: MultiAddress<AccountId, u32>,
dest: MultiAddress<AccountId, u32>,
value: u128
) -> Result<WrappedCall<'api>>
pub fn force_transfer(
&self,
source: MultiAddress<AccountId, u32>,
dest: MultiAddress<AccountId, u32>,
value: u128
) -> Result<WrappedCall<'api>>
sourcepub fn burn_account_balance(&self, amount: u128) -> Result<WrappedCall<'api>>
pub fn burn_account_balance(&self, amount: u128) -> Result<WrappedCall<'api>>
Burns the given amount of tokens from the caller’s free, unlocked balance.
Trait Implementations§
Auto Trait Implementations§
impl<'api> !RefUnwindSafe for CallApi<'api>
impl<'api> Send for CallApi<'api>
impl<'api> Sync for CallApi<'api>
impl<'api> Unpin for CallApi<'api>
impl<'api> !UnwindSafe for CallApi<'api>
Blanket Implementations§
§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> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
Convert
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
Convert
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.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> SaturatedConversion for T
impl<T> SaturatedConversion for T
source§fn saturated_from<T>(t: T) -> Selfwhere
Self: UniqueSaturatedFrom<T>,
fn saturated_from<T>(t: T) -> Selfwhere
Self: UniqueSaturatedFrom<T>,
source§fn saturated_into<T>(self) -> Twhere
Self: UniqueSaturatedInto<T>,
fn saturated_into<T>(self) -> Twhere
Self: UniqueSaturatedInto<T>,
Consume self to return an equivalent value of
T
. Read more§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
The counterpart to
unchecked_from
.source§impl<T, S> UniqueSaturatedInto<T> for Swhere
T: Bounded,
S: TryInto<T>,
impl<T, S> UniqueSaturatedInto<T> for Swhere
T: Bounded,
S: TryInto<T>,
source§fn unique_saturated_into(self) -> T
fn unique_saturated_into(self) -> T
Consume self to return an equivalent value of
T
.