electrum_jsonrpc 0.4.6

Simple library for interaction with Electron client daemon through json-rpc.
Documentation

Simple library for interaction with Electron client daemon through json-rpc

 use electrum_jsonrpc::Electrum;

#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error + Sync + Send>> {
    let client = Electrum::new(
        "dummy_login".to_string(),
        "dummy_password".to_string(),
        "http://127.0.0.1:7000".to_string(),
    )?;

    let resp = client.get_help().await?;

    Ok(())
}