#api #satellite #node #blockstream #lightning #bitcoin #version

ionosphere

Library to interact with the Blockstream satellite API

3 releases (breaking)

Uses old Rust 2015

0.3.0 Jan 30, 2019
0.2.0 Jan 27, 2019
0.1.0 Jan 23, 2019

#5 in #blockstream

Download history 13/week @ 2024-02-21 12/week @ 2024-02-28 24/week @ 2024-03-27 38/week @ 2024-04-03

62 downloads per month

MIT license

12KB
221 lines

Ionosphere

Don't use this library in production yet, it's hacky and incomplete! PRs are always welcome :)

This library can send data over Blockstream satellite compatible APIs. By default it will connect to the API endpoint run by Blockstream, but users can choose other providers should they exist at some point.

To use the API you need a running c-lightning instance on the same machine. It has to be on the same bitcoin network as the API endpoint. The API network version (currently testnet for Blockstream) can be queried using IonosphereClient::lightning_node(&self).

Usage example

If you have just funded a new testnet c-lightning node you could run the following code to send some lorem ipsum to earth:

let mut client = IonosphereClient::new_blockstream_client(
    Path::new("/home/user/.lightning/lightning-rpc")
);
// Open direct lightning channel to API node
client.open_channel(1000000).unwrap();
// Place bid and pay for it
client.place_bid("src/bin/lipsum.txt", 100000).unwrap();

You can find more usage examples in src/bin.

Future development goals

  • Stronger typed API, many fields that could be their own types are currently Strings
  • Better/complete error handling
  • Automatic integration tests
  • Support fetching and updating bids
  • Add lightning abstraction layer to support lnd and c-lightning and at some point rust-lightning

Dependencies

~21MB
~462K SLoC