Mainnet: Sourced Installation and Setup
Instruction to install the sourced binary on the Source Mainnet
Current Mainnet
Below is the Source Chain mainnet and its current status. You will need to know the version tag for installation of the sourced binary.
Additional resources, guides, snapshots, and explorers can be found further down at: Mainnet Resources
For details of upgrades on the current mainnet, as well as syncing, you can check out the Mainnet Repo.
If you get stuck, please ask on Discord.
source-1
v3.0.1
Minimum Hardware Requirements
The minimum recommended hardware requirements for running a validator for the Source Chain testnets are:
16GB RAM
200GB of disk space
2 Cores (modern CPU's)
These specifications are the minimum recommended. As Source Chain is a smart contract platform, it can at times be very demanding on hardware. Low spec validators WILL get stuck on difficult to process blocks.
Choose an Operating System
The operating system you use for your node is entirely your personal preference. You will be able to compile the sourced daemon on most modern linux distributions and recent versions of macOS.
Install pre-requisites
# update the local package list and install any available upgrades
sudo apt-get update && sudo apt upgrade -y
# install toolchain and ensure accurate time synchronization
sudo apt install curl tar wget clang pkg-config libssl-dev libleveldb-dev jq build-essential bsdmainutils git make ncdu htop screen unzip bc fail2ban htop -yInstall Go
Follow the instructions here to install Go.
For an Ubuntu LTS, you can probably use:
ver="1.19" && \
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 versionClone Source Chain Repo
git clone https://github.com/Source-Protocol-Cosmos/source.gitCompile sourced binary
cd ~/source
git fetch
git checkout v3.0.1
make build && make installInitialize the Source directories and create the local genesis file with the correct chain-id:
sourced init <moniker-name> --chain-id=source-1Create a local key pair (or add existing key):
# Create new keypair
sourced keys add <key-name>
# Restore existing source wallet with mnemonic seed phrase.
# You will be prompted to enter mnemonic seed.
sourced keys add <key-name> --recover
# Query the keystore for your public address
sourced keys show <key-name> -aReplace <key-name> with a key name of your choosing.
After creating a new key, the key information and seed phrase will be shown. It is essential to write this seed phrase down and keep it in a safe place. The seed phrase is the only way to restore your keys.
Download Genesis File
curl -s https://raw.githubusercontent.com/Source-Protocol-Cosmos/mainnet/master/source-1/genesis.json > ~/.source/config/genesis.jsonGenesis sha256
sha256sum ~/.source/config/genesis.jsonThis should return:
# ba2261082818227073bd8b49717a9781bf5c440c8e34e21ec72fb15806f047ccSeed nodes to add to config.toml
nano ~/.source/config/config.tomlFind the appropriate section and add:
# Comma separated list of nodes to keep persistent connections to persistent_peers =
"[email protected]:26656,[email protected]:26656"Set Minimum Gas Price
nano ~/.source/config/app.toml
0.25usourceStart the chain
sourced startIt will take some time to catch up and sync to the network. Check your status with:
sourced statusRunning in production
Create a systemd file for your Source service:
sudo nano /etc/systemd/system/sourced.serviceCopy and paste the following and update:
Description=Source daemon
After=network-online.target
[Service]
User=<YOUR_USERNAME>
ExecStart=/home/<YOUR-USERNAME>/go/bin/sourced start --home /home/<YOUR-USERNAME>/.source
Restart=on-failure
RestartSec=3
LimitNOFILE=4096
[Install]
WantedBy=multi-user.targetThis assumes $HOME/.source to be your directory for config and data. Your actual directory locations may vary.
Enable and start the new service:
sudo systemctl enable sourcedsudo systemctl start sourcedCheck status:
sourced statusCheck logs:
journalctl -u sourced -fSetup cosmovisor
Follow these instructions to setup cosmovisor and start the node.
Upgrade to a validator
To upgrade the node to a validator, you will need to submit a create-validator transaction:
sourced tx staking create-validator \
--amount 1000000000usource \
--commission-max-change-rate "0.1" \
--commission-max-rate "0.20" \
--commission-rate "0.1" \
--min-self-delegation "1" \
--details "validators write bios too" \
--pubkey=$(sourced tendermint show-validator) \
--moniker “<key-name>” \
--chain-id sourcechain-testnet \
--gas-prices 0.025usource \
--from <key-name>Backup critical files
There are certain files that you need to backup to be able to restore your validator if, for some reason, it damaged or lost in some way. Please make a secure backup of the following files located in ~/.source/config/:
priv_validator_key.jsonnode_key.json
It is recommended that you encrypt the backup of these files.
Last updated
