Trait polymesh_api_client::signer::KeypairSigner
source · pub trait KeypairSigner: Send + Sync + Sized + Clone {
// Required methods
fn account(&self) -> AccountId;
fn sign(&self, message: &[u8]) -> MultiSignature;
fn from_string(s: &str, password_override: Option<&str>) -> Result<Self>;
}
Required Methods§
fn account(&self) -> AccountId
fn sign(&self, message: &[u8]) -> MultiSignature
fn from_string(s: &str, password_override: Option<&str>) -> Result<Self>
Object Safety§
This trait is not object safe.