| Crates.io | electrum_jsonrpc |
| lib.rs | electrum_jsonrpc |
| version | 0.4.6 |
| created_at | 2021-02-16 17:15:51.912228+00 |
| updated_at | 2021-06-14 16:14:06.664991+00 |
| description | Simple library for interaction with Electron client daemon through json-rpc. |
| homepage | |
| repository | https://github.com/ChzenChzen/electrum_jsonrpc |
| max_upload_size | |
| id | 356088 |
| size | 31,017 |
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(())
}