Trait polymesh_api_client::signer::Signer
source · [−]pub trait Signer {
fn account(&self) -> AccountId;
fn sign<'life0, 'life1, 'async_trait>(
&'life0 self,
msg: &'life1 [u8]
) -> Pin<Box<dyn Future<Output = Result<MultiSignature>> + Send + 'async_trait>>
where
'life0: 'async_trait,
'life1: 'async_trait,
Self: 'async_trait;
fn nonce(&self) -> Option<u32> { ... }
fn set_nonce(&mut self, _nonce: u32) { ... }
}