Mainnet

Chain ID: uptick_117-1 | Node Version: v0.2.19

Node Installation Guide

Update system and install build tools

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.5.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

Install Node

cd $HOME

rm -rf uptick

git clone https://github.com/UptickNetwork/uptick.git

cd uptick

git checkout v0.2.19

make install

uptickd version

Initialize Node

Replace NodeName with your own moniker.

uptickd init NodeName --chain-id=uptick_117-1

Download Genesis

curl -Ls https://ss.uptick.nodestake.org/genesis.json > $HOME/.uptickd/config/genesis.json 

Download addrbook

curl -Ls https://ss.uptick.nodestake.org/addrbook.json > $HOME/.uptickd/config/addrbook.json

Create Service

sudo tee /etc/systemd/system/uptickd.service > /dev/null <<EOF
[Unit]
Description=uptickd Daemon
After=network-online.target
[Service]
User=$USER
ExecStart=$(which uptickd) start
Restart=always
RestartSec=3
LimitNOFILE=65535
[Install]
WantedBy=multi-user.target
EOF
sudo systemctl daemon-reload
sudo systemctl enable uptickd

Download Snapshot(optional)

SNAP_NAME=$(curl -s https://ss.uptick.nodestake.org/ | egrep -o ">20.*\.tar.lz4" | tr -d ">")

curl -o - -L https://ss.uptick.nodestake.org/${SNAP_NAME}  | lz4 -c -d - | tar -x -C $HOME/.uptickd

Launch Node

sudo systemctl restart uptickd
journalctl -u uptickd -f

If you have any questions, please reach out to our Discord

 

https://rpc.uptick.nodestake.org

 

https://api.uptick.nodestake.org

 

https://grpc.uptick.nodestake.org:443

Chain Name: Uptick Mainnet
RPC: https://jsonrpc.uptick.nodestake.org/
Chain ID: 117
Symbol: UPTICK
Explorer: 

https://ss.uptick.nodestake.org/genesis.json

Download Genesis File

curl -Ls https://ss.uptick.nodestake.org/genesis.json > $HOME/.uptickd/config/genesis.json 

https://ss.uptick.nodestake.org/addrbook.json

Download Addrbook

curl -Ls https://ss.uptick.nodestake.org/addrbook.json > $HOME/.uptickd/config/addrbook.json 

Restart Node

sudo systemctl restart uptickd
journalctl -u uptickd -f

Set Peers

peers=$(curl -s https://ss.uptick.nodestake.org/peers.txt)
sed -i.bak -e "s/^persistent_peers *=.*/persistent_peers = \"$peers\"/" ~/.uptickd/config/config.toml

Restart Node

sudo systemctl restart uptickd
journalctl -u uptickd -f

Stop Node And Reset

sudo systemctl stop uptickd

uptickd tendermint unsafe-reset-all --home ~/.uptickd/ --keep-addr-book

Configure State Sync

SNAP_RPC="https://rpc.uptick.nodestake.org:443"

LATEST_HEIGHT=$(curl -s $SNAP_RPC/block | jq -r .result.block.header.height); \

BLOCK_HEIGHT=$((LATEST_HEIGHT - 1000)); \

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\"| ; \

s|^(seeds[[:space:]]+=[[:space:]]+).*$|\1\"\"|" ~/.uptickd/config/config.toml

more ~/.uptickd/config/config.toml | grep 'rpc_servers'

more ~/.uptickd/config/config.toml | grep 'trust_height'

more ~/.uptickd/config/config.toml | grep 'trust_hash'

Restart Node

sudo systemctl restart uptickd
journalctl -u uptickd -f

We make the node snapshot every 12h

Install lz4

sudo apt update

sudo apt-get install snapd lz4 -y

Off State Sync

sed -i.bak -E "s|^(enable[[:space:]]+=[[:space:]]+).*$|\1false|" ~/.uptickd/config/config.toml

Stop Node and Reset Date

sudo systemctl stop uptickd

cp $HOME/.uptickd/data/priv_validator_state.json $HOME/.uptickd/priv_validator_state.json.backup

rm -rf ~/.uptickd/data

uptickd tendermint unsafe-reset-all --home ~/.uptickd/ --keep-addr-book

Download Snapshot

SNAP_NAME=$(curl -s https://ss.uptick.nodestake.org/ | egrep -o ">20.*\.tar.lz4" | tr -d ">")

curl -o - -L https://ss.uptick.nodestake.org/${SNAP_NAME}  | lz4 -c -d - | tar -x -C $HOME/.uptickd

mv $HOME/.uptickd/priv_validator_state.json.backup $HOME/.uptickd/data/priv_validator_state.json

Restart Node

sudo systemctl restart uptickd
journalctl -u uptickd -f

If you have any questions, please reach out to our Discord

Testnet

Chain ID: origin_1170-2 | Node Version: v0.2.19

Node Installation Guide

Update system and install build tools

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.19.5.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

Install Node

cd $HOME

rm -rf uptick

git clone https://github.com/UptickNetwork/uptick.git

cd uptick

git checkout v0.2.19

make install

uptickd version

Initialize Node

Replace NodeName with your own moniker.

uptickd init NodeName --chain-id=origin_1170-2

Download Genesis

curl -Ls https://ss-t.uptick.nodestake.top/genesis.json > $HOME/.uptickd/config/genesis.json 

Download addrbook

curl -Ls https://ss-t.uptick.nodestake.top/addrbook.json > $HOME/.uptickd/config/addrbook.json

Create Service

sudo tee /etc/systemd/system/uptickd.service > /dev/null <<EOF
[Unit]
Description=uptickd Daemon
After=network-online.target
[Service]
User=$USER
ExecStart=$(which uptickd) start
Restart=always
RestartSec=3
LimitNOFILE=65535
[Install]
WantedBy=multi-user.target
EOF
sudo systemctl daemon-reload
sudo systemctl enable uptickd

Download Snapshot(optional)

SNAP_NAME=$(curl -s https://ss-t.uptick.nodestake.top/ | egrep -o ">20.*\.tar.lz4" | tr -d ">")

curl -o - -L https://ss-t.uptick.nodestake.top/${SNAP_NAME}  | lz4 -c -d - | tar -x -C $HOME/.uptickd

Launch Node

sudo systemctl restart uptickd
journalctl -u uptickd -f

If you have any questions, please reach out to our Discord

 

https://rpc-t.uptick.nodestake.top

 

https://api-t.uptick.nodestake.top

 

https://grpc-t.uptick.nodestake.top

Chain Name: Uptick Testnet
Chain ID: 7000
RPC: https://jsonrpc-t.uptick.nodestake.top/
Symbol: AUPTICK
Explorer: 

https://ss-t.uptick.nodestake.top/genesis.json

Download Genesis File

curl -Ls https://ss-t.uptick.nodestake.top/genesis.json > $HOME/.uptickd/config/genesis.json 

https://ss-t.uptick.nodestake.top/addrbook.json

Download Addrbook

curl -Ls https://ss-t.uptick.nodestake.top/addrbook.json > $HOME/.uptickd/config/addrbook.json 

Restart Node

sudo systemctl restart uptickd
journalctl -u uptickd -f

Set Peers

peers=$(curl -s https://ss-t.uptick.nodestake.top/peers.txt)
sed -i.bak -e "s/^persistent_peers *=.*/persistent_peers = \"$peers\"/" ~/.uptickd/config/config.toml

Restart Node

sudo systemctl restart uptickd
journalctl -u uptickd -f

Stop Node And Reset

sudo systemctl stop uptickd

uptickd tendermint unsafe-reset-all --home ~/.uptickd/ --keep-addr-book

Configure State Sync

SNAP_RPC="https://rpc-t.uptick.nodestake.top:443"

LATEST_HEIGHT=$(curl -s $SNAP_RPC/block | jq -r .result.block.header.height); \

BLOCK_HEIGHT=$((LATEST_HEIGHT - 1000)); \

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\"| ; \

s|^(seeds[[:space:]]+=[[:space:]]+).*$|\1\"\"|" ~/.uptickd/config/config.toml

more ~/.uptickd/config/config.toml | grep 'rpc_servers'

more ~/.uptickd/config/config.toml | grep 'trust_height'

more ~/.uptickd/config/config.toml | grep 'trust_hash'

Restart Node

sudo systemctl restart uptickd
journalctl -u uptickd -f

We make the node snapshot every 6h

Install lz4

sudo apt update

sudo apt-get install snapd lz4 -y

Off State Sync

sed -i.bak -E "s|^(enable[[:space:]]+=[[:space:]]+).*$|\1false|" ~/.uptickd/config/config.toml

Stop Node and Reset Date

sudo systemctl stop uptickd

rm -rf ~/.uptickd/data

uptickd tendermint unsafe-reset-all --home ~/.uptickd/ --keep-addr-book

Download Snapshot

SNAP_NAME=$(curl -s https://ss-t.uptick.nodestake.top/ | egrep -o ">20.*\.tar.lz4" | tr -d ">")

curl -o - -L https://ss-t.uptick.nodestake.top/${SNAP_NAME}  | lz4 -c -d - | tar -x -C $HOME/.uptickd

Restart Node

sudo systemctl restart uptickd
journalctl -u uptickd -f

If you have any questions, please reach out to our Discord