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 27.11.24
cd $HOME && mkdir -p go/bin/
git clone https://github.com/celestiaorg/celestia-node.git
cd celestia-node/
git checkout tags/v0.20.4
make build
sudo make install
make cel-key
mv $HOME/celestia-node/cel-key /usr/local/bin/
celestia version
version: v0.20.4
commit: 51b79431533576a5cddf1235bdf3751e4c014212
Create/recover wallet
cel-key add light-wallet --keyring-backend test --node.type light
OR
cel-key add light-wallet --keyring-backend test --node.type light --recover
SnapShot Light Mainnet | Archive (updated every 24 hours)
You can check the size and time of snapshot creation with this command
curl -sI https://celestia.light-archive.snap-m.stavr.tech/light-m-snap.tar.lz4 | grep "last" && curl -sI https://celestia.light-archive.snap-m.stavr.tech/light-m-snap.tar.lz4 | grep content-length | awk '{printf "%.2f GB\n", $2/1024/1024/1024}'