ver="1.23.1"
wget "https://golang.org/dl/go$ver.linux-amd64.tar.gz"
sudo rm -rf /usr/local/go
sudo tar -C /usr/local -xzf "go$ver.linux-amd64.tar.gz"
rm "go$ver.linux-amd64.tar.gz"
echo "export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin" >> $HOME/.bash_profile
source $HOME/.bash_profile
go version
Build 28.01.25
cd $HOME && mkdir -p go/bin/
git clone https://github.com/celestiaorg/celestia-node.git
cd celestia-node/
git checkout tags/v0.21.3-mocha
make build
sudo make install
make cel-key
mv $HOME/celestia-node/cel-key /usr/local/bin/
celestia version
version: v0.21.3-mocha
commit: 5a5d450e58dbf4154338ba9fa247e96f2ae5fa01
Create/recover wallet
cel-key add full-wallet --keyring-backend test --node.type full --p2p.network mocha
OR
cel-key add full-wallet --keyring-backend test --node.type full --recover --p2p.network mocha
Initiation
celestia full init --keyring.keyname full-wallet --p2p.network mocha-4
SnapShot Full Testnet | Archive (updated every 24h)
You can check the size and time of snapshot creation with this command
curl -sI https://celestia.full-archive.snap-t.stavr.tech/full-t-snap.tar.lz4 | grep "last" && curl -sI https://celestia.full-archive.snap-t.stavr.tech/full-t-snap.tar.lz4 | grep content-length | awk '{printf "%.2f GB\n", $2/1024/1024/1024}'