Run a Krishnala Node

๐Ÿณ 1. Docker easiest 92 MB download

docker run -d --name krishnala \
  -p 26656:26656 -p 26657:26657 -p 8545:8545 \
  ghcr.io/jwendyr/krishnala-node:latest

โšก 2. One-line installer Linux x86_64

curl -sL https://krishnala.com/install-node.sh | bash

๐Ÿ“ฑ Run on a phone? Android / Termux

Use KRIS (send/receive, dApps)
Run a node on the phone

pkg install curl && curl -sL https://krishnala.com/install-node-termux.sh | bash

๐Ÿ”ง 3. Manual 44 MB binary

curl -sL https://krishnala.com/krishnalad -o krishnalad && chmod +x krishnalad
./krishnalad init MYNODE --chain-id krishnala-1
curl -sL https://krishnala.com/genesis.json -o ~/.krishnala/config/genesis.json
# set persistent-peers from https://krishnala.com/network.json
./krishnalad start

krishnalad tx staking create-validator \
  --amount 1000000000ukris --pubkey $(krishnalad tendermint show-validator) \
  --moniker "MY VALIDATOR" --commission-rate 0.1 \
  --commission-max-rate 0.2 --commission-max-change-rate 0.01 \
  --min-self-delegation 1 --from mykey --chain-id krishnala-1 --fees 50000ukris -y

Chain IDkrishnala-1
Genesiskrishnala.com/genesis.json
Seed / Peernetwork.json
RPChttps://rpc.krishnala.com
Binarykrishnala.com/krishnalad
Sourcegithub.com/jwendyr/krishnala
โ† krishnala.com ยท Explorer