2025-07-08 04:28:42 +03:00
|
|
|
# lbc
|
2025-07-12 12:07:50 +03:00
|
|
|
<<<<<<< HEAD
|
|
|
|
|
<<<<<<< HEAD
|
|
|
|
|
=======
|
|
|
|
|
>>>>>>> d8e9608 (Fix key parsing and update docs)
|
2025-07-08 04:28:42 +03:00
|
|
|
|
|
|
|
|
Experimental blockchain implementation built on Tendermint and BadgerDB.
|
|
|
|
|
|
|
|
|
|
## Building
|
|
|
|
|
|
|
|
|
|
This project uses Go modules. Ensure Go 1.24 or newer is installed and run:
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
go build ./...
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
|
|
|
|
|
The binary exposes several flags. To generate configuration files and keys for a
|
|
|
|
|
new node run:
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
go run . --init --mode genesis
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
For joining an existing network use `--mode join` instead. Once configured you
|
|
|
|
|
can start the node with:
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
go run .
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
See `--help` for a full list of available options.
|
2025-07-12 12:07:50 +03:00
|
|
|
<<<<<<< HEAD
|
|
|
|
|
=======
|
|
|
|
|
blockchain for social cooperation
|
|
|
|
|
>>>>>>> 1e4be97 (Initial commit)
|
|
|
|
|
=======
|
|
|
|
|
>>>>>>> d8e9608 (Fix key parsing and update docs)
|