
SUI Network - complete guide to run a Node & Validator
SUI is a layer 1 blockchain designed by Mysten Labs from the ground up in smart contract specific language called MOVE This guide will go over installing a Full Node and Validator from scratch in order to run a Sui network node, assumes a fresh install of Ubuntu 20.04LTS. Hardware Requirements: Node Requirements: Full node requirements are lower, but storage can be expected to increase over time CPUs: 2 RAM: 8GB Storage: 50GB Validator Requirements: Validators perform work and deal with chain...

Easy Guide to Gnosischain Validator - with Lighthouse
This guide is help you set up a Gnosischain Validator, this will cover the full set up on a local device installed with Ubuntu 20.04 LTS. We will be using Lighthouse for consensus layer client and Nethermind for our Execution layer client. Gnosischain merge is on the horizon, this guide is intended to be merge ready the set up will cover steps and configuration needed to run post merge, and today. Gnosischain is using Ethereum Proof of Stake consensus with the Beacon chain to select validator...

Aztec Sequencer- Public Testnet
This is a full guide to setup an Aztec Sequencer on Public Testnet, using Docker Compose and your own Sepolia Ethereum node (same device)Aztec Network- A privacy first Layer 2 on EthereumAztec is a zk-rollup allowing developers to build decentralised applications that preserve user privacy without compromising security or decentralisation. Aztec team co-developed Plonk, a highly efficient and universal zk-SNARK proving system that has since become foundational across the ZK ecosystem. Plonk’s...
$ETH Solo Staker #stakefromhome

SUI Network - complete guide to run a Node & Validator
SUI is a layer 1 blockchain designed by Mysten Labs from the ground up in smart contract specific language called MOVE This guide will go over installing a Full Node and Validator from scratch in order to run a Sui network node, assumes a fresh install of Ubuntu 20.04LTS. Hardware Requirements: Node Requirements: Full node requirements are lower, but storage can be expected to increase over time CPUs: 2 RAM: 8GB Storage: 50GB Validator Requirements: Validators perform work and deal with chain...

Easy Guide to Gnosischain Validator - with Lighthouse
This guide is help you set up a Gnosischain Validator, this will cover the full set up on a local device installed with Ubuntu 20.04 LTS. We will be using Lighthouse for consensus layer client and Nethermind for our Execution layer client. Gnosischain merge is on the horizon, this guide is intended to be merge ready the set up will cover steps and configuration needed to run post merge, and today. Gnosischain is using Ethereum Proof of Stake consensus with the Beacon chain to select validator...

Aztec Sequencer- Public Testnet
This is a full guide to setup an Aztec Sequencer on Public Testnet, using Docker Compose and your own Sepolia Ethereum node (same device)Aztec Network- A privacy first Layer 2 on EthereumAztec is a zk-rollup allowing developers to build decentralised applications that preserve user privacy without compromising security or decentralisation. Aztec team co-developed Plonk, a highly efficient and universal zk-SNARK proving system that has since become foundational across the ZK ecosystem. Plonk’s...
$ETH Solo Staker #stakefromhome

Subscribe to GLCstaked

Subscribe to GLCstaked
Share Dialog
Share Dialog
<100 subscribers
<100 subscribers


Set up guide for a Full Storage Node on Celestia Mocha Testnet.
The Full storage node is a Data Availability Node, this node stores all the data but does not connect to Consensus (Celestia App). A bridge node is used to bridge between consensus nodes and data (storage & light) nodes.
A setup script, for easier install is available here:
Hardware Requirements:
4vCPU / 8GB RAM / 250GB SSD / 1 Gbps Download/100 Mbps Upload OS: Ubuntu Linux 20.04 (LTS) x64
See Official guides for Celestia on setting up a Full Storage Node here, This document is designed for an easy step by step setup for beginner users.
Update the OS
sudo apt update && sudo apt upgrade -y
Install essential packages for Celestia
These are essential packages that are necessary to execute many tasks like downloading files, compiling and monitoring the node:
sudo apt install curl tar wget clang pkg-config libssl-dev jq build-essential bsdmainutils git make ncdu -y
Change to Root User
Most of the packages to install work best under root, to enter root in the terminal with sudo -i which can be exited back to normal user with exit anytime.
Install Golang
most of Celestia software is written in go, so the go programming language suite needs to be installed. remove any existing installation
cd $HOME
sudo rm -rf /usr/local/go
sudo rm -rf ~/go
Install Go and extract
ver="1.19.4"
wget "https://golang.org/dl/go$ver.linux-amd64.tar.gz"
sudo tar -C /usr/local -xzf "go$ver.linux-amd64.tar.gz"
rm "go$ver.linux-amd64.tar.gz"
Add Go to PATH
echo "export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin" >> $HOME/.bash_profile
source $HOME/.bash_profile
Adding to the PATH variable is to allow Linux shell to know where to look for executable files is easy, to confirm this try go version
This should Returngo version go1.19.4 linux/amd64

For Celestia full storage node setup: we need to install celestia-node the software stack for data availability not consensus, https://docs.celestia.org/developers/celestia-app/
Install Celestia Node
Check the Discord ‘mocha testnet’ announcements for the latest version (currently this is v0.6.1)
cd $HOME
rm -rf celestia-node
git clone https://github.com/celestiaorg/celestia-node.git
cd celestia-node/
git checkout tags/v0.6.1
make install
make cel-key
confirm installation by running from within the directory celestia version

The Binary for celestia-node is installed to /usr/local/bin
Initialise Celestia Node for full storage
From Directory celestia-node
celestia full init

There is now a config.toml file which contains some parameters that can be modified for changes such as ports, this is in .celestia-full-mocha
Start the Full Storage Node
A Full Storage Node requires a connection to a validator node's gRPC endpoint (which is usually exposed on port 9090): we can find RPC endpoints, check out the list of resources here.
celestia full start --core.ip http://<ip addr of core node>:<Port>
Example
celestia full start --core.ip https://grpc-mocha.pops.one
Output will look like this on first start, this creates a Key for you

Stop the node with ctrl + c
Once you start the Full Storage Node, a wallet key will be generated for you. You will need to fund that address with testnet tokens to pay for PayForData transactions.
Find Celestia node Key
this will list the key installed earlier on first start-up in order for you to find your address
./cel-key list --node.type full --keyring-backend test
Use Existing Key
The custom key must exist inside the Celestia bridge node directory at the correct path default: ~/.celestia-full-mocha/keys/keyring-test.
add a wallet with existing seed, from celestia-node directory
./cel-key add <name_of_custom_key> --keyring-backend test --node.type full --recover
add flag to the start command from step 3. or to the system service file later at step 5.
--keyring.accname <name_of_custom_key>
Set up celestia-node as a background process.
tee <<EOF >/dev/null /etc/systemd/system/celestia-full.service
[Unit]
Description=celestia-full Cosmos daemon
After=network-online.target
[Service]
User=root
ExecStart=/usr/local/bin/celestia full start --core.ip https://grpc-mocha.pops.one
Restart=on-failure
RestartSec=3
LimitNOFILE=4096
[Install]
WantedBy=multi-user.target
EOF
Enable and start celestia-full daemon
systemctl enable celestia-full
systemctl daemon-reload
systemctl start celestia-full
To view logs
journalctl -u celestia-full.service -f
you are now running a Celestia Full Storage Node as a background service, this will run until stopped.

Stop the full storage node
systemctl stop celestia-full
Making changes to service file
nano /etc/systemd/system/celestia-full.service
Restart the service
systemctl daemon-reload
systemctl start celestia-full
Set up guide for a Full Storage Node on Celestia Mocha Testnet.
The Full storage node is a Data Availability Node, this node stores all the data but does not connect to Consensus (Celestia App). A bridge node is used to bridge between consensus nodes and data (storage & light) nodes.
A setup script, for easier install is available here:
Hardware Requirements:
4vCPU / 8GB RAM / 250GB SSD / 1 Gbps Download/100 Mbps Upload OS: Ubuntu Linux 20.04 (LTS) x64
See Official guides for Celestia on setting up a Full Storage Node here, This document is designed for an easy step by step setup for beginner users.
Update the OS
sudo apt update && sudo apt upgrade -y
Install essential packages for Celestia
These are essential packages that are necessary to execute many tasks like downloading files, compiling and monitoring the node:
sudo apt install curl tar wget clang pkg-config libssl-dev jq build-essential bsdmainutils git make ncdu -y
Change to Root User
Most of the packages to install work best under root, to enter root in the terminal with sudo -i which can be exited back to normal user with exit anytime.
Install Golang
most of Celestia software is written in go, so the go programming language suite needs to be installed. remove any existing installation
cd $HOME
sudo rm -rf /usr/local/go
sudo rm -rf ~/go
Install Go and extract
ver="1.19.4"
wget "https://golang.org/dl/go$ver.linux-amd64.tar.gz"
sudo tar -C /usr/local -xzf "go$ver.linux-amd64.tar.gz"
rm "go$ver.linux-amd64.tar.gz"
Add Go to PATH
echo "export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin" >> $HOME/.bash_profile
source $HOME/.bash_profile
Adding to the PATH variable is to allow Linux shell to know where to look for executable files is easy, to confirm this try go version
This should Returngo version go1.19.4 linux/amd64

For Celestia full storage node setup: we need to install celestia-node the software stack for data availability not consensus, https://docs.celestia.org/developers/celestia-app/
Install Celestia Node
Check the Discord ‘mocha testnet’ announcements for the latest version (currently this is v0.6.1)
cd $HOME
rm -rf celestia-node
git clone https://github.com/celestiaorg/celestia-node.git
cd celestia-node/
git checkout tags/v0.6.1
make install
make cel-key
confirm installation by running from within the directory celestia version

The Binary for celestia-node is installed to /usr/local/bin
Initialise Celestia Node for full storage
From Directory celestia-node
celestia full init

There is now a config.toml file which contains some parameters that can be modified for changes such as ports, this is in .celestia-full-mocha
Start the Full Storage Node
A Full Storage Node requires a connection to a validator node's gRPC endpoint (which is usually exposed on port 9090): we can find RPC endpoints, check out the list of resources here.
celestia full start --core.ip http://<ip addr of core node>:<Port>
Example
celestia full start --core.ip https://grpc-mocha.pops.one
Output will look like this on first start, this creates a Key for you

Stop the node with ctrl + c
Once you start the Full Storage Node, a wallet key will be generated for you. You will need to fund that address with testnet tokens to pay for PayForData transactions.
Find Celestia node Key
this will list the key installed earlier on first start-up in order for you to find your address
./cel-key list --node.type full --keyring-backend test
Use Existing Key
The custom key must exist inside the Celestia bridge node directory at the correct path default: ~/.celestia-full-mocha/keys/keyring-test.
add a wallet with existing seed, from celestia-node directory
./cel-key add <name_of_custom_key> --keyring-backend test --node.type full --recover
add flag to the start command from step 3. or to the system service file later at step 5.
--keyring.accname <name_of_custom_key>
Set up celestia-node as a background process.
tee <<EOF >/dev/null /etc/systemd/system/celestia-full.service
[Unit]
Description=celestia-full Cosmos daemon
After=network-online.target
[Service]
User=root
ExecStart=/usr/local/bin/celestia full start --core.ip https://grpc-mocha.pops.one
Restart=on-failure
RestartSec=3
LimitNOFILE=4096
[Install]
WantedBy=multi-user.target
EOF
Enable and start celestia-full daemon
systemctl enable celestia-full
systemctl daemon-reload
systemctl start celestia-full
To view logs
journalctl -u celestia-full.service -f
you are now running a Celestia Full Storage Node as a background service, this will run until stopped.

Stop the full storage node
systemctl stop celestia-full
Making changes to service file
nano /etc/systemd/system/celestia-full.service
Restart the service
systemctl daemon-reload
systemctl start celestia-full
No activity yet