Welcome to validator AlxVoy ⚡ ANODE.TEAM



Uptick Network

Links

Mainnet service

Explorers

Sync

RPC & API

Peers and seeds

Genesis and addrbook

Wasm

Service script (Install, State-Sync, Snapshot, Delete)

wget -O Uptick.sh https://anode.team/Uptick/main/Uptick.sh && chmod u+x Uptick.sh && ./Uptick.sh

Installation

Software Requirements

  • Prerequisite: go1.18+ required. ref
  • Prerequisite: git. ref

Install last binary

git clone https://github.com/UptickNetwork/uptick
cd uptick
git checkout v0.2.19
make install

Init the config files

uptickd init <moniker> --chain-id uptick_117-1
uptickd config chain-id uptick_117-1

Create a wallet

uptickd keys add <wallet_name>

Download genesis and addrbook

curl https://anode.team/Uptick/main/genesis.json > ~/.uptickd/config/genesis.json
curl https://anode.team/Uptick/main/addrbook.json > ~/.uptickd/config/addrbook.json

Add peers, seed

SEEDS=""
PEERS="170397e75ca2b0f4e9f3b1bb5d0d23f9b10f01c7@uptick-sentry-1.p2p.brocha.in:30597,c0b33353fb70d8d71dcb9c8848b3b4207bd56951@uptick-sentry-2.p2p.brocha.in:30598,23e76540bea9b6851b92e280d7e0c123a0d49521@uptick-sentry-3.p2p.brocha.in:30599,94b63fddfc78230f51aeb7ac34b9fb86bd042a77@uptick-rpc.p2p.brocha.in:30601,f97a75fb69d3a5fe893dca7c8d238ccc0bd66a8f@uptick.seed.brocha.in:30600,48e7e8ca23b636f124e70092f4ba93f98606f604@54.37.129.164:55056"
sed -i.bak -e "s/^seeds *=.*/seeds = \"$SEEDS\"/; s/^persistent_peers *=.*/persistent_peers = \"$PEERS\"/" $HOME/.uptickd/config/config.toml

Add min gas

sed -i.bak -e "s/^minimum-gas-prices *=.*/minimum-gas-prices = \"0auptick\"/" $HOME/.uptickd/config/app.toml

Create the service file

sudo tee /etc/systemd/system/uptickd.service > /dev/null <<EOF
[Unit]
Description=Uptick Network
After=network-online.target

[Service]
User=$USER
ExecStart=$(which uptickd) start
Restart=always
RestartSec=3
LimitNOFILE=4096

[Install]
WantedBy=multi-user.target
EOF

Load service and start

sudo systemctl daemon-reload && sudo systemctl enable uptickd
sudo systemctl restart uptickd && journalctl -fu uptickd -o cat

Create Validator

uptickd tx staking create-validator \
  --amount=1000000auptick \
  --pubkey=$(uptickd tendermint show-validator) \
  --moniker="<moniker>" \
  --identity="<identity>" \
  --website="<website>" \
  --details="<details>" \
  --security-contact="<contact>" \
  --chain-id="uptick_117-1" \
  --commission-rate="0.10" \
  --commission-max-rate="0.20" \
  --commission-max-change-rate="0.01" \
  --min-self-delegation="1" \
  --fees="0auptick" \
  --from=<wallet_name>

State-Sync

SNAP_RPC=https://uptick.rpc.m.anode.team:443 && \
LATEST_HEIGHT=$(curl -s $SNAP_RPC/block | jq -r .result.block.header.height); \
BLOCK_HEIGHT=$((LATEST_HEIGHT - 1500)); \
TRUST_HASH=$(curl -s "$SNAP_RPC/block?height=$BLOCK_HEIGHT" | jq -r .result.block_id.hash) && \
echo $LATEST_HEIGHT $BLOCK_HEIGHT $TRUST_HASH
wget https://anode.team/unsafe-reset-all.sh && chmod u+x unsafe-reset-all.sh && ./unsafe-reset-all.sh uptickd .uptickd
peers="ee045c74c0678f1122650a3a5223923977cae1b3@65.109.93.152:30656"
sed -i.bak -e  "s/^persistent_peers *=.*/persistent_peers = \"$peers\"/" $HOME/.uptickd/config/config.toml
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\"\"|" $HOME/.uptickd/config/config.toml
curl -o - -L https://anode.team/Uptick/main/anode.team_uptick_wasm.tar.lz4 | lz4 -c -d - | tar -x -C $HOME/.uptickd/data/
sudo systemctl restart uptickd && journalctl -fu uptickd -o cat

Testnet service

Explorers

Sync

RPC & API

Peers and seeds

Genesis and addrbook

Service script (Install, State-Sync, Snapshot, Delete)

wget -O Uptick.sh https://anode.team/Uptick/test/Uptick.sh && chmod u+x Uptick.sh && ./Uptick.sh

Installation

Software Requirements

  • Prerequisite: go1.18.5+ required. ref
  • Prerequisite: git. ref

Install last binary

git clone https://github.com/UptickNetwork/uptick
cd uptick
git checkout v0.2.6
make install

Init the config files

uptickd init <moniker> --chain-id uptick_7000-2
uptickd config chain-id uptick_7000-2

Create a wallet

uptickd keys add <wallet_name>

Download genesis and addrbook

curl https://anode.team/Uptick/test/genesis.json > ~/.uptickd/config/genesis.json
curl https://anode.team/Uptick/test/addrbook.json > ~/.uptickd/config/addrbook.json

Add peers, seed

SEEDS=""
PEERS="78fa616bb67efd86e48529fde26309681ee213b6@65.108.199.222:26636"
sed -i.bak -e "s/^seeds *=.*/seeds = \"$SEEDS\"/; s/^persistent_peers *=.*/persistent_peers = \"$PEERS\"/" $HOME/.uptickd/config/config.toml

Add min gas

sed -i.bak -e "s/^minimum-gas-prices *=.*/minimum-gas-prices = \"0auptick\"/" $HOME/.uptickd/config/app.toml

Create the service file

sudo tee /etc/systemd/system/uptickd.service > /dev/null <<EOF
[Unit]
Description=Uptick Network
After=network-online.target

[Service]
User=$USER
ExecStart=$(which uptickd) start
Restart=always
RestartSec=3
LimitNOFILE=4096

[Install]
WantedBy=multi-user.target
EOF

Load service and start

sudo systemctl daemon-reload && sudo systemctl enable uptickd
sudo systemctl restart uptickd && journalctl -fu uptickd -o cat

Create Validator

uptickd tx staking create-validator \
  --amount=1000000auptick \
  --pubkey=$(uptickd tendermint show-validator) \
  --moniker="<moniker>" \
  --identity="<identity>" \
  --website="<website>" \
  --details="<details>" \
  --security-contact="<contact>" \
  --chain-id="uptick_7000-2" \
  --commission-rate="0.10" \
  --commission-max-rate="0.20" \
  --commission-max-change-rate="0.01" \
  --min-self-delegation="1" \
  --fees="0auptick" \
  --from=<wallet_name>

State-Sync

SNAP_RPC=https://uptick.rpc.t.anode.team:443 && \
LATEST_HEIGHT=$(curl -s $SNAP_RPC/block | jq -r .result.block.header.height); \
BLOCK_HEIGHT=$((LATEST_HEIGHT - 100)); \
TRUST_HASH=$(curl -s "$SNAP_RPC/block?height=$BLOCK_HEIGHT" | jq -r .result.block_id.hash) && \
echo $LATEST_HEIGHT $BLOCK_HEIGHT $TRUST_HASH
wget https://anode.team/unsafe-reset-all.sh && chmod u+x unsafe-reset-all.sh && ./unsafe-reset-all.sh uptickd .uptickd
peers="78fa616bb67efd86e48529fde26309681ee213b6@65.108.199.222:26636"
sed -i.bak -e  "s/^persistent_peers *=.*/persistent_peers = \"$peers\"/" $HOME/.uptickd/config/config.toml
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\"\"|" $HOME/.uptickd/config/config.toml
sudo systemctl restart uptickd && journalctl -fu uptickd -o cat