Installation
Automatic Installation
source <(curl -s https://raw.githubusercontent.com/NodersUA/Scripts/main/cascadia)Manual Installation
# Update the repositories
apt update && apt upgrade -y# Install developer packages
apt install curl iptables build-essential git wget jq make gcc nano tmux htop nvme-cli pkg-config libssl-dev libleveldb-dev tar clang bsdmainutils ncdu unzip libleveldb-dev -y# Install Go
source <(curl -s https://raw.githubusercontent.com/NodersUA/Scripts/main/system/go)# Set the variables
# Come up with the name of your node and replace it instead <your_moniker>
MONIKER=<your_moniker>
echo 'export MONIKER='$MONIKER >> $HOME/.bash_profile
echo "export CASCADIA_CHAIN_ID=cascadia_11029-1" >> $HOME/.bash_profile
echo "export CASCADIA_PORT=18" >> $HOME/.bash_profile
source $HOME/.bash_profile
# check whether the last command was executed# Download binary files
cd $HOME
git clone https://github.com/cascadiafoundation/cascadia && cd cascadia
git checkout v0.3.0
make install
sudo cp $(which cascadiad) /usr/local/bin/ && cd $HOME
cascadiad version --long | grep -e version -e commit
# v0.2.0Setup config
(OPTIONAL) Turn off indexing in config.toml
Now all ok, check the status
Wallet
The wallet has been created. In the last line there will be a phrase that must be written down
Go to the #faucet branch and request tokens
Validator
Do not forget to create a profile on https://keybase.io/ and set a profile photo there that will be imported by key and used for your validators.
Check yourself in the list explorer
Or by command
!!! Save priv_validator_key.json which is located in /root/.cascadiad/config
Last updated
Was this helpful?