noncommercial blockchain
Find a file
Gregory Bednov 0a77f9a78c modified: README.md
modified:   cli/run.go
    modified:   configfunctions/configfunctions.go
	modified:   go.mod
	modified:   go.sum
2025-07-12 13:30:41 +03:00
.github/workflows major release 2025-07-12 12:07:50 +03:00
abciapp major release 2025-07-12 12:07:50 +03:00
autopeering patch 2025-07-12 12:12:23 +03:00
cli modified: README.md 2025-07-12 13:30:41 +03:00
configfunctions modified: README.md 2025-07-12 13:30:41 +03:00
persistentpeersparser commit 2025-07-08 04:28:42 +03:00
yggdrasil patch2 2025-07-12 12:20:04 +03:00
.gitattributes commit 2025-07-08 04:28:42 +03:00
.gitignore major release 2025-07-12 12:07:50 +03:00
go.mod modified: README.md 2025-07-12 13:30:41 +03:00
go.sum modified: README.md 2025-07-12 13:30:41 +03:00
LICENSE commit 2025-07-08 04:28:42 +03:00
main.go major release 2025-07-12 12:07:50 +03:00
README.md modified: README.md 2025-07-12 13:30:41 +03:00

lbc

Experimental blockchain for social cooperation 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 genesis

For joining an existing network use init join instead:

go run . init join <path to genesis.json>

Once configured you can start the node with:

go run .

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