- Guide
- Addrbook
- Genesis File
- Peers
- State Sync
- Explorer
Official Docs Setup Intel SGX
https://swisstronik.gitbook.io/swisstronik-docs/node-setup/setup-sgx
Update system and install build dependencies
sudo apt update
sudo apt-get install git curl build-essential make jq gcc snapd chrony lz4 tmux unzip bc -y
Install Go
rm -rf $HOME/go
sudo rm -rf /usr/local/go
cd $HOME
curl https://dl.google.com/go/go1.20.1.linux-amd64.tar.gz | sudo tar -C/usr/local -zxvf -
cat <<'EOF' >>$HOME/.profile
export GOROOT=/usr/local/go
export GOPATH=$HOME/go
export GO111MODULE=on
export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin
EOF
source $HOME/.profile
go version
Download and Install Binaries
cd $HOME
wget https://github.com/SigmaGmbH/swisstronik-chain/releases/download/v1.0.1/swisstronikd.deb.zip
unzip swisstronikd.deb.zip
dpkg -i swisstronik_1.0.1-updated-binaries_amd64.deb
swisstronikd version
Initialize Node
swisstronikd init NodeName --chain-id=swisstronik_1291-1
swisstronikd config chain-id swisstronik_1291-1
swisstronikd config keyring-backend os
Download Genesis File
curl -Ls https://files.nomadvalidator.com/swisstronik-t/genesis.json > $HOME/.swisstronik/config/genesis.json
Download Addrbook File
curl -Ls https://files.nomadvalidator.com/swisstronik-t/addrbook.json > $HOME/.swisstronik/config/addrbook.json
Create Service Daemon
sudo tee /etc/systemd/system/swisstronikd.service > /dev/null <<EOF
[Unit]
Description=union Daemon
After=network-online.target
[Service]
User=$USER
ExecStart=$(which swisstronikd) start
Restart=always
RestartSec=3
LimitNOFILE=65535
[Install]
WantedBy=multi-user.target
EOF
sudo systemctl daemon-reload
sudo systemctl enable swisstronikd
Start Node
sudo systemctl restart swisstronikd
sudo journalctl -u swisstronikd -f
Download Addrbook File
curl -Ls https://files.nomadvalidator.com/swisstronik-t/addrbook.json > $HOME/.swisstronik/config/addrbook.json
Restart Node
sudo systemctl restart swisstronikd
sudo journalctl -u swisstronikd -f
Download Genesis File
curl -Ls https://files.nomadvalidator.com/swisstronik-t/genesis.json > $HOME/.swisstronik/config/genesis.json
Set Peers
peers=$(curl -s https://files.nomadvalidator.com/swisstronik-t/peers.txt)
sed -i.bak -e "s/^persistent_peers *=.*/persistent_peers = "$peers"/" ~/.union/config/config.toml
Restart Node
sudo systemctl restart swisstronikd
sudo journalctl -u swisstronikd -f
Stop Node And Reset
sudo systemctl stop swisstronikd && swisstronikd tendermint unsafe-reset-all --home $HOME/.swisstronik --keep-addr-book
Configure State Sync
SNAP_RPC=https://swisstronik-rpc.nomadvalidator.com:443 && \
LATEST_HEIGHT=$(curl -s $SNAP_RPC/block | jq -r .result.block.header.height); \
BLOCK_HEIGHT=$((LATEST_HEIGHT - 2000)); \
TRUST_HASH=$(curl -s "$SNAP_RPC/block?height=$BLOCK_HEIGHT" | jq -r .result.block_id.hash); \
echo $LATEST_HEIGHT $BLOCK_HEIGHT $TRUST_HASH
sed -i.bak -E "s|^(enable[[:space:]]+=[[:space:]]+).*$|\1true| ; \
s|^(rpc_servers[[:space:]]+=[[:space:]]+).*$|\1\"$SNAP_RPC,$SNAP_RPC"| ; \
s|^(trust_height[[:space:]]+=[[:space:]]+).*$|\1$BLOCK_HEIGHT| ; \
s|^(trust_hash[[:space:]]+=[[:space:]]+).*$|\1\"$TRUST_HASH"|" $HOME/.swisstronik/config/config.toml; \
sed -i 's/persistent_peers = ""/persistent_peers = "b535e01f9f40a200d7a080adb91ab77b1285f807@swisstronik-rpc.nomadvalidator.com:26656"/' ~/.swisstronik/config/config.toml
sudo systemctl restart swisstronikd && journalctl -fu swisstronikd -o cat