You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Go to file
Edouard Paris f5006b250b fix readme: add -mod=vendor 5 years ago
app refac app and logging 5 years ago
cli controller: add pubsub 5 years ago
cmd/lntop cli: init app 5 years ago
config refac config default 5 years ago
events git add ticker 5 years ago
logging refac app and logging 5 years ago
network update gui 5 years ago
pubsub git add ticker 5 years ago
ui fix controller remove log 5 years ago
vendor views: message.NewPrinter(language.English) 5 years ago
.gitignore init gitignore 5 years ago
LICENSE Initial commit 5 years ago
README.md fix readme: add -mod=vendor 5 years ago
doc.go add doc.go 5 years ago
go.mod views: message.NewPrinter(language.English) 5 years ago
go.sum refac config: use toml 5 years ago

README.md

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.