commit
This commit is contained in:
commit
750f3b1547
14 changed files with 3003 additions and 0 deletions
29
README.md
Normal file
29
README.md
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
# 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:
|
||||
|
||||
```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.
|
||||
Loading…
Add table
Add a link
Reference in a new issue