Simple library for interaction with Electron client daemon through json-rpc
```rust use electrum_jsonrpc::Electrum;
async fn main() -> Result<(), Box> { let client = Electrum::new( "dummylogin".tostring(), "dummypassword".tostring(), "http://127.0.0.1:7000".to_string(), )?;
let resp = client.get_help().await?; Ok(())
} ```