You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
1.5 KiB

# lndconnect 🌩 [![Build Status](https://travis-ci.com/LN-Zap/lndconnect.svg?branch=master)](https://travis-ci.com/LN-Zap/lndconnect)
7 years ago
Generate a QRCode or URI to connect applications to lnd instances.
For more information take a look at the [specification of the uri format](lnd_connect_uri.md).
## Installing lndconnect
```
go get -d github.com/LN-Zap/lndconnect
cd $GOPATH/src/github.com/LN-Zap/lndconnect
6 years ago
make
```
## Starting lndconnect
```
lndconnect
```
7 years ago
6 years ago
## Application Options
6 years ago
6 years ago
```
-i, --localip Include local ip in QRCode
-l, --localhost Use 127.0.0.1 for ip
--host= Use specific host name
--nocert Don't include the certificate
-p, --port= Use this port (default: 10009)
-j, --url Display url instead of a QRCode
-o, --image Output QRCode to file
--invoice Use invoice macaroon
--readonly Use readonly macaroon
-q, --query= Add additional url query parameters
--lnddir= The base directory that contains lnd's data, logs, configuration
file, etc.
--configfile= Path to configuration file
-b, --datadir= The directory to find lnd's data within
--tlscertpath= Path to read the TLS certificate from
--adminmacaroonpath= Path to read the admin macaroon from
--readonlymacaroonpath= Path to read the read-only macaroon from
--invoicemacaroonpath= Path to read the invoice-only macaroon from
6 years ago
```