2
0
mirror of https://github.com/edouardparis/lntop synced 2024-11-16 00:12:44 +00:00
Go to file
2019-04-12 16:02:36 +02:00
app refac app and logging 2019-03-26 14:02:59 +01:00
cli controller: add pubsub 2019-03-29 17:30:48 +01:00
cmd/lntop cli: init app 2019-03-15 16:08:57 +01:00
config refac config default 2019-04-05 17:00:25 +02:00
events git add ticker 2019-04-01 14:46:59 +02:00
logging refac app and logging 2019-03-26 14:02:59 +01:00
network update gui 2019-04-09 13:52:12 +02:00
pubsub git add ticker 2019-04-01 14:46:59 +02:00
ui fix controller remove log 2019-04-11 13:47:45 +02:00
vendor views: message.NewPrinter(language.English) 2019-04-04 16:24:44 +02:00
.gitignore init gitignore 2019-03-15 17:52:29 +01:00
doc.go add doc.go 2019-04-11 13:18:11 +02:00
go.mod views: message.NewPrinter(language.English) 2019-04-04 16:24:44 +02:00
go.sum refac config: use toml 2019-03-28 09:21:46 +01:00
LICENSE Initial commit 2019-03-15 15:42:17 +01:00
README.md fix readme: add -mod=vendor 2019-04-12 16:02:36 +02:00

lntop

MIT licensed Go Report Card Godoc tippin.me

lntop is an interactive text-mode channels viewer for Unix systems.

lntop-v0.0.0 lntop-v0.0.0

Install

Require the go programming language (version >= 1.11)

git clone git@github.com:edouardparis/lntop.git
cd lntop && export GO111MODULE=on && go install -mod=vendor ./...

Config

First time lntop is used a config file .lntop/config.toml is created in the user home directory.

[logger]
type = "production"
dest = "/root/.lntop/lntop.log"

[network]
name = "lnd"
type = "lnd"
address = "//127.0.0.1:10009"
cert = "/root/.lnd/tls.cert"
macaroon = "/root/.lnd/data/chain/bitcoin/mainnet/admin.macaroon"
macaroon_timeout = 60
max_msg_recv_size = 52428800
conn_timeout = 1000000
pool_capacity = 3

Change macaroon path according to your network.