Skip to content

junod-v13.0.0-mekatek.1

Compare
Choose a tag to compare
@08d2 08d2 released this 13 Mar 17:10
· 285 commits to mekatek since this release

See the Zenith documentation for validators for important information about running a Zenith full node. In particular, note that Zenith will be disabled unless you set the environment variable ZENITH_CHAIN_ID to the appropriate chain ID, e.g. juno-1.

For example, to run the node interactively, you could do something like the following.

env ZENITH_CHAIN_ID=juno-1 junod ...

Or, if you use systemd, you would add something like the following to your service file.

[Service]
Environment=ZENITH_CHAIN_ID=juno-1

Build

git clone https://github.com/CosmosContracts/juno
cd juno
git checkout v13.0.0
go mod edit -replace=github.com/tendermint/tendermint=github.com/meka-dev/tendermint@ca1568e50
go mod tidy
# Juno depends on a specific version of libwasm. Building with Docker will
# create a statically linked binary that doesn't depend on a shared libwasm
# library being present at a specific version on the host. If you prefer to
# build without Docker, run `make build` instead, and ensure you have the right
# shared libwasm library on your validator host.
docker build -t juno .
docker create --name tmp juno
mkdir -p bin
docker cp tmp:/usr/bin/junod bin/junod
docker rm -f tmp
bin/junod version

Details

  • Repo tag for this release: mekatek/github.com/informalsystems/tendermint@v0.34.26-1
  • Repo SHA for this release: ca1568e
  • Diff to upstream Tendermint: v0.34.26...ca1568e50