near-cli-rs 0.23.3

human-friendly console utility that helps to interact with NEAR Protocol from command line.
Documentation
#[derive(Debug, Clone)]
pub struct Signature(pub near_crypto::Signature);

impl std::fmt::Display for Signature {
    fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
        self.0.fmt(f)
    }
}

impl std::str::FromStr for Signature {
    type Err = near_crypto::ParseSignatureError;

    fn from_str(s: &str) -> Result<Self, Self::Err> {
        let signature = near_crypto::Signature::from_str(s)?;
        Ok(Self(signature))
    }
}

impl From<Signature> for near_crypto::Signature {
    fn from(item: Signature) -> Self {
        item.0
    }
}