Joining the SSC Mainnet as a Full Node
Steps to Join as a Full Node Post-Genesis
Initialize the
sscd
instance on this machine by runningsscd init <moniker> --chain-id ssc-1
. Theinit
command also generates certain configuration files in the home directory for SSC (default~/.ssc
). Example:
Next, update
persistent_peers
information in~/.ssc/config/config.toml
using the persistent peers provided by the Saga team. You will update this in theP2P
section ofconfig.toml
file.
Copy the
genesis.json
file provided by the Saga team to~/.ssc/config/
, overwriting any existing genesis file in that location.
Start the SSC node on this machine using
sscd start
to start the node. Important: You should ideally start the local validator as asystemd
service on this machine so it will restart if the machine goes down and is rebooted.
Your full node will sync with the SSC network by replaying all of the transactions and blocks committed so far and will be ready for us one it is fully in sync with the SSC network.
Last updated