Tiny web app to help you form a genesis file
- no logs
- open-source
- 300 lines of code
- single file
Tendermint >= 0.19
wget https://github.com/tendermint/alpha/raw/master/alpha.go && go run alpha.go
If that failed with something like cannot use pubKey ... as type
, remove
$GOPATH/src/github.com/tendermint/go-crypto
or run it inside a Docker
container.
OR
docker run -it --rm -p "8080:8080" melekes/alpha
Build docker image:
CGO_ENABLED=0 GOOS=linux go build -ldflags "-s -w" -o alpha
docker build -t "your_account/alpha" .