Welcome to validator AlxVoy ANODE.TEAM



Uptick

Uptick

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

Hardware Requirements

  • Memory 16GB
  • CPUs Quad Core or larger AMD or Intel (amd64) CPU
  • Disk At least 500GB NVMe Storage

Software Requirements

  • Prerequisite: go1.21.5 required. ref
  • Prerequisite: git. ref

Install last binary

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

if an error has occurred, you can simply download the binary

wget -O $HOME/go/bin/uptickd https://anode.team/Uptick/main/uptickd && chmod +x $HOME/go/bin/uptickd

Init the config files

uptickd init [moniker] --chain-id uptick_117-1
sed -i "s/chain-id = .*/chain-id = \"uptick_117-1\"/" $HOME/.uptickd/config/client.toml

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="ee045c74c0678f1122650a3a5223923977cae1b3@65.109.93.152:30656"
sed -i -e "s/^seeds *=.*/seeds = \"$SEEDS\"/; s/^persistent_peers *=.*/persistent_peers = \"$PEERS\"/" $HOME/.uptickd/config/config.toml

Add min gas

sed -i 's|minimum-gas-prices =.*|minimum-gas-prices = "0auptick"|g' $HOME/.uptickd/config/app.toml

Set custom ports

curl -sSL https://anode.team/set-ports.sh | bash -s -- .uptickd

Pruning and indexer

sed -i -e "s/^pruning *=.*/pruning = \"custom\"/" $HOME/.uptickd/config/app.toml 
sed -i -e "s/^pruning-keep-recent *=.*/pruning-keep-recent = \"100\"/" $HOME/.uptickd/config/app.toml
sed -i -e "s/^pruning-interval *=.*/pruning-interval = \"19\"/" $HOME/.uptickd/config/app.toml
sed -i -e "s/^indexer *=.*/indexer = \"null\"/" $HOME/.uptickd/config/config.toml

Create the service file

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

[Service]
Type=simple
User=root
WorkingDirectory=/root/
ExecStart=$(which uptickd) start
Restart=on-failure
RestartSec=3
LimitNOFILE=10000

[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=1000000000000000000auptick \
    --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="3000000000000000auptick" \
    --gas 300000 \
    --from=[wallet_name]

Testnet 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/test/Uptick.sh && chmod u+x Uptick.sh && ./Uptick.sh

Installation

Hardware Requirements

  • Memory 16GB
  • CPUs Quad Core or larger AMD or Intel (amd64) CPU
  • Disk At least 500GB NVMe Storage

Software Requirements

  • Prerequisite: go1.21.5 required. ref
  • Prerequisite: git. ref

Install last binary

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

if an error has occurred, you can simply download the binary

wget -O $HOME/go/bin/uptickd https://anode.team/Uptick/test/uptickd && chmod +x $HOME/go/bin/uptickd

Init the config files

uptickd init [moniker] --chain-id uptick_117-1
sed -i "s/chain-id = .*/chain-id = \"uptick_117-1\"/" $HOME/.uptickd/config/client.toml

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="ee045c74c0678f1122650a3a5223923977cae1b3@65.109.93.152:30656"
sed -i -e "s/^seeds *=.*/seeds = \"$SEEDS\"/; s/^persistent_peers *=.*/persistent_peers = \"$PEERS\"/" $HOME/.uptickd/config/config.toml

Add min gas

sed -i 's|minimum-gas-prices =.*|minimum-gas-prices = "0auptick"|g' $HOME/.uptickd/config/app.toml

Set custom ports

curl -sSL https://anode.team/set-ports.sh | bash -s -- .uptickd

Pruning and indexer

sed -i -e "s/^pruning *=.*/pruning = \"custom\"/" $HOME/.uptickd/config/app.toml 
sed -i -e "s/^pruning-keep-recent *=.*/pruning-keep-recent = \"100\"/" $HOME/.uptickd/config/app.toml
sed -i -e "s/^pruning-interval *=.*/pruning-interval = \"19\"/" $HOME/.uptickd/config/app.toml
sed -i -e "s/^indexer *=.*/indexer = \"null\"/" $HOME/.uptickd/config/config.toml

Create the service file

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

[Service]
Type=simple
User=root
WorkingDirectory=/root/
ExecStart=$(which uptickd) start
Restart=on-failure
RestartSec=3
LimitNOFILE=10000

[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=1000000000000000000auptick \
    --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="3000000000000000auptick" \
    --gas 300000 \
    --from=[wallet_name]