mirror of
https://github.com/lightninglabs/faraday.git
synced 2026-08-17 13:07:41 +02:00
No description
Channel insights calcualte the values required for recommendations, pass insights in rather than raw rpc channels so that we do not need to calcualte values (uptime, revenue etc) in the recommend package and can focus on producing recommendations. |
||
|---|---|---|
| cmd | ||
| dataset | ||
| insights | ||
| make | ||
| recommend | ||
| revenue | ||
| trmrpc | ||
| utils | ||
| .golangci.yml | ||
| .travis.yml | ||
| config.go | ||
| go.mod | ||
| go.sum | ||
| LICENSE | ||
| log.go | ||
| Makefile | ||
| README.md | ||
| terminator.go | ||
Terminator
The terminator is an external service intended to be run in conjunction with the lnd implementation of the Lightning Network. It queries LND for information about its existing channels and provides channel close recommendations if channels are under-performing.
Future iterations of this project will automate the channel closing process.
Installation
A Makefile is provided. To install terminator and al its dependencies, run:
go get -d github.com/lightninglabs/terminator
cd $GOPATH/src/github.com/lightninglabs/terminator
make && make install
Tests
To run all the unit tests inthe repo, use:
make check