pub trait BankTxCommit: ClientTxCommit + ClientAbciQuery {
    // Provided methods
    fn bank_send_commit<'life0, 'life1, 'life2, 'life3, 'async_trait>(
        &'life0 self,
        chain_cfg: &'life1 ChainConfig,
        req: SendRequest,
        key: &'life2 SigningKey,
        tx_options: &'life3 TxOptions
    ) -> Pin<Box<dyn Future<Output = Result<<Self as ClientTxCommit>::Response, BankError>> + Send + 'async_trait>>
       where Self: Sync + 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait,
             'life2: 'async_trait,
             'life3: 'async_trait { ... }
    fn bank_send_batch_commit<'life0, 'life1, 'life2, 'life3, 'async_trait, I>(
        &'life0 self,
        chain_cfg: &'life1 ChainConfig,
        reqs: I,
        key: &'life2 SigningKey,
        tx_options: &'life3 TxOptions
    ) -> Pin<Box<dyn Future<Output = Result<<Self as ClientTxCommit>::Response, BankError>> + Send + 'async_trait>>
       where I: IntoIterator<Item = SendRequest> + Send + 'async_trait,
             Self: Sync + 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait,
             'life2: 'async_trait,
             'life3: 'async_trait { ... }
}

Provided Methods§

source

fn bank_send_commit<'life0, 'life1, 'life2, 'life3, 'async_trait>( &'life0 self, chain_cfg: &'life1 ChainConfig, req: SendRequest, key: &'life2 SigningKey, tx_options: &'life3 TxOptions ) -> Pin<Box<dyn Future<Output = Result<<Self as ClientTxCommit>::Response, BankError>> + Send + 'async_trait>>where Self: Sync + 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait, 'life3: 'async_trait,

Send amount of funds from source (from) Address to destination (to) Address

source

fn bank_send_batch_commit<'life0, 'life1, 'life2, 'life3, 'async_trait, I>( &'life0 self, chain_cfg: &'life1 ChainConfig, reqs: I, key: &'life2 SigningKey, tx_options: &'life3 TxOptions ) -> Pin<Box<dyn Future<Output = Result<<Self as ClientTxCommit>::Response, BankError>> + Send + 'async_trait>>where I: IntoIterator<Item = SendRequest> + Send + 'async_trait, Self: Sync + 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait, 'life3: 'async_trait,

Implementors§