[][src]Trait substrate_subxt::balances::TransferCallEventsSubscriber

pub trait TransferCallEventsSubscriber<T: Balances> {
    fn transfer<'a>(
        self,
        to: &'a <T as System>::Address,
        amount: T::Balance
    ) -> Pin<Box<dyn Future<Output = Result<ExtrinsicSuccess<T>, Error>> + Send + 'a>>; }

Call extension trait.

Required methods

fn transfer<'a>(
    self,
    to: &'a <T as System>::Address,
    amount: T::Balance
) -> Pin<Box<dyn Future<Output = Result<ExtrinsicSuccess<T>, Error>> + Send + 'a>>

Create and submit the extrinsic.

Loading content...

Implementors

impl<T, P, S, E> TransferCallEventsSubscriber<T> for EventsSubscriber<T, P, S, E> where
    T: Balances + System + Send + Sync + 'static,
    P: Pair,
    S: Verify + Codec + From<P::Signature> + Send + 'static,
    S::Signer: From<P::Public> + IdentifyAccount<AccountId = T::AccountId>,
    T::Address: From<T::AccountId>,
    E: SignedExtra<T> + SignedExtension + 'static, 
[src]

Loading content...