pub trait Unlocked: Locked {
fn sign(&self, state_root: &str) -> Result<String, Self::Error>;
fn get_auth(
&self,
for_chain: ChainId,
intended_for: ValidatorId
) -> Result<String, Self::Error>;
}
Expand description
Available methods for Unlocked clients.
Unlocked clients should also implement Locked
.