noncommercial blockchain
Find a file
2025-07-08 04:28:42 +03:00
.github/workflows commit 2025-07-08 04:28:42 +03:00
autopeering commit 2025-07-08 04:28:42 +03:00
configfunctions commit 2025-07-08 04:28:42 +03:00
persistentpeersparser commit 2025-07-08 04:28:42 +03:00
yggdrasil commit 2025-07-08 04:28:42 +03:00
.gitattributes commit 2025-07-08 04:28:42 +03:00
.gitignore commit 2025-07-08 04:28:42 +03:00
app.go commit 2025-07-08 04:28:42 +03:00
go.mod commit 2025-07-08 04:28:42 +03:00
go.sum commit 2025-07-08 04:28:42 +03:00
LICENSE commit 2025-07-08 04:28:42 +03:00
main.go commit 2025-07-08 04:28:42 +03:00
README.md commit 2025-07-08 04:28:42 +03:00

lbc

Experimental blockchain implementation built on Tendermint and BadgerDB.

Building

This project uses Go modules. Ensure Go 1.24 or newer is installed and run:

go build ./...

Usage

The binary exposes several flags. To generate configuration files and keys for a new node run:

go run . --init --mode genesis

For joining an existing network use --mode join instead. Once configured you can start the node with:

go run .

See --help for a full list of available options.