lnsocket

A minimal C library for connecting to the lightning network
git clone git://jb55.com/lnsocket
Log | Files | Refs | Submodules | README | LICENSE

commit a55b3921a8418e364ebb8d4140870b0cfa350159
parent 74a91106eae2204ed9cfdadeb05038faef4946f6
Author: William Casarin <jb55@jb55.com>
Date:   Sat, 12 Mar 2022 14:21:16 -0800

update readme

Diffstat:
MREADME.md | 10+++++-----
Dindex.htm | 18------------------
2 files changed, 5 insertions(+), 23 deletions(-)

diff --git a/README.md b/README.md @@ -30,15 +30,15 @@ You'll need `emscripten` for the `wasm` build. $ make ios This will build `lnsocket.a`, `libsodium.a` and `libsecp256k1.a` under -target/ios for arm64 and ios-sim. +`target/ios` for `arm64` and `ios-sim-x86`. ### WASM/JS/Web $ make wasm -This will build `lnsocket.js` and `lnsocket_module.wasm` so that you can -connect to the lightning network from your browser via websockets. See +This will build `lnsocket.js` and `lnsocket.wasm` in `target/wasm` so that you +can connect to the lightning network from your browser via websockets. See [lnsocket_example.js](lnsocket_example.js) for a demo. @@ -50,12 +50,12 @@ connect to the lightning network from your browser via websockets. See ## Contributing -Send patches to [mailto:jb55@jb55.com](jb55@jb55.com): +Send patches to [jb55@jb55.com](mailto:jb55@jb55.com): $ git config format.subjectPrefix 'PATCH lnsocket' $ git config sendemail.to 'William Casarin <jb55@jb55.com>' $ git send-email --annotate HEAD^ -See [https://git-send-email.io/](git-send-email.io) for configuring your mailer +See [git-send-email.io](https://git-send-email.io/) for configuring your mailer You can [open a PR on github](https://github.com/jb55/lnsocket) as well diff --git a/index.htm b/index.htm @@ -1,18 +0,0 @@ - -<!DOCTYPE html> -<html lang="en"> - <head> - <meta charset="utf-8"> - <meta name="viewport" content="width=device-width, initial-scale=1"> - - <title>Hello World</title> - </head> - <body> - <h1>Hello World</h1> - <script src="lnsocket.js"></script> - <script src="lnsocket_example.js"></script> - <script> - </script> - </body> -</html> -