Dailynet
A testnet that restarts every day launched from tezos/tezos master branch and protocol alpha.
Public RPC endpoints | https://rpc.dailynet-2023-03-30.teztnets.xyz |
Faucet | Dailynet faucet |
Full network name | TEZOS-DAILYNET-2023-03-30T00:00:00.000Z |
Tezos docker build | tezos/tezos:master_a19bbd17_20230329225603 |
Activated on | 2023-03-30T00:00:00.000Z |
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 Dailynet with docker, open a shell in the container:
docker run -it --entrypoint=/bin/sh tezos/tezos:master_a19bbd17_20230329225603
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 a19bbd17
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 Dailynet network
Run the following commands:
octez-node config init --network https://teztnets.xyz/dailynet-2023-03-30
octez-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 octez-node run --rpc-addr 127.0.0.1:8732 > ./node-dailynet-2023-03-30.log &