This crate provides an interface from rust to the c-lightning daemon through RPC.
```rust extern crate clightningrpc;
use clightningrpc::LightningRPC;
fn main() { let mut client = LightningRPC::new("/home/user/.lightning/lightning-rpc".to_string());
println!("getinfo result: {:?}", client.getinfo().unwrap());
} ```
See examples directory for more usage examples.
Currently implemented (this covers all non-dev commands as of c-lightning v0.6.1rc1):
getinfo
feerates
listnodes
listchannels
help
getlog
listconfigs
listpeers
listinvoices
invoice
delinvoice
delexpiredinvoice
autocleaninvoice
waitanyinvoice
waitinvoice
pay
sendpay
waitsendpay
listpayments
decodepay
getroute
connect
disconnect
fundchannel
close
ping
listfunds
withdraw
newaddr
stop
Be aware that the API (of rust-clighting-rpc, but also that of c-lightning itself) is not finalized. This means that it may change from version to version and break your compile, sorry!
i64
versus u64
in APIfundchannel
, withdraw
: allow passing all
for satoshi
"code" : 205, "message" : "Could not find a route", "data" : ...
data
could be parsed into a structure, but this depends on the kind of error
the API could make more use of enums where the possible values are known; for example the
addresstype
parameter to newaddr
, but also in returned structures. This has to be weighted
agains flexibility, though, in case the API is extended later.
decide on &str
versus String
on high-level API (but at least make sure it is consistent)
rustfmt src/*.rs
before committingThis library is based on Andrew Poelstra's rust-jsonrpc.