Mondaynet
A testnet that restarts every Monday launched from tezos/tezos master branch. It runs Jakarta with SCORU feature flags on for 8 cycles then upgrades to proto Alpha.
Full network name | TEZOS-MONDAYNET-2022-05-23T00:00:00.000Z |
Tezos docker build | tezos/tezos:master_bcc74d5c_20220520204711 |
Public RPC endpoint | https://rpc.mondaynet-2022-05-23.teztnets.xyz |
Faucet | Mondaynet faucet |
Activated on | 2022-05-23T00:00:00.000Z |
Protocol at level 0 | PtJakart2xVj7pYXJBXrqHgd82rdkLey5ZeeGwDgPp9rhQUbSqY |
Protocol at level 1024 | ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK |
Install the software
⚠️ If you already have an existing Tezos installation, do not forget to backup and delete your ~/.tezos-node
and ~/.tezos-client
.
Alternative: Use docker
To join Mondaynet with docker, open a shell in the container:
docker run -it --entrypoint=/bin/sh tezos/tezos:master_bcc74d5c_20220520204711
Alternative: Build the software
⚠️ If this is your first time installing Tezos, you may need to install a few dependencies.
git clone git@gitlab.com:tezos/tezos.git
cd tezos
git checkout bcc74d5c
opam init # if this is your first time using OPAM
make build-deps
eval $(opam env)
make
export PATH=$HOME/tezos/_build/install/default/bin/:$PATH
Join the Mondaynet network
Run the following commands:
tezos-node config init --network https://teztnets.xyz/mondaynet-2022-05-23
tezos-node run --rpc-addr 127.0.0.1:8732
💡 A simple way to keep your process alive is to use
screen
ornohup
to keep it running in the background while redirecting logs into files at the same time. For example:nohup tezos-node run --rpc-addr 127.0.0.1:8732 > ./node-mondaynet-2022-05-23.log &