Welcome to validator AlxVoy ⚡ ANODE.TEAM
Website
- https://nois.networkTwitter
- https://twitter.com/NoisNetworkDiscord
- https://discord.gg/x4DXYNpJJKGithub
git clone https://github.com/noislabsWhitepaper
https://whitepaper.nois.network/Docs
https://docs.nois.network/Metrics
https://monitoring.noislabs.com/d/A8EXIS44zANODE.TEAM
https://main.anode.team/noisPeer
b26e5ac4afbadf96ad31ee3aeb5e6557f2894037@65.108.199.222:30656Live peers
https://anode.team/Nois/main/peers.txtGenesis
https://anode.team/Nois/main/genesis.jsonAddrbook
https://anode.team/Nois/main/addrbook.jsonwget -O Nois.sh https://anode.team/Nois/main/Nois.sh && chmod u+x Nois.sh && ./Nois.sh
git clone https://github.com/noislabs/noisd
cd noisd
git checkout v1.0.5
make install
noisd init <moniker> --chain-id nois-1
noisd config chain-id nois-1
noisd keys add <wallet_name>
curl https://anode.team/Nois/main/genesis.json > ~/.noisd/config/genesis.json
curl https://anode.team/Nois/main/addrbook.json > ~/.noisd/config/addrbook.json
SEEDS="b3e3bd436ee34c39055a4c9946a02feec232988c@seeds.cros-nest.com:56656"
PEERS="b26e5ac4afbadf96ad31ee3aeb5e6557f2894037@65.108.199.222:30656"
sed -i.bak -e "s/^seeds *=.*/seeds = \"$SEEDS\"/; s/^persistent_peers *=.*/persistent_peers = \"$PEERS\"/" $HOME/.noisd/config/config.toml
sed -i.bak -e "s/^minimum-gas-prices *=.*/minimum-gas-prices = \"0.05unois\"/" $HOME/.noisd/config/app.toml
sudo tee /etc/systemd/system/noisd.service > /dev/null <<EOF
[Unit]
Description=Nois
After=network-online.target
[Service]
User=$USER
ExecStart=$(which noisd) start
Restart=always
RestartSec=3
LimitNOFILE=4096
[Install]
WantedBy=multi-user.target
EOF
sudo systemctl daemon-reload && sudo systemctl enable noisd
sudo systemctl restart noisd && journalctl -fu noisd -o cat
noisd tx staking create-validator \
--amount=1000000unois \
--pubkey=$(noisd tendermint show-validator) \
--moniker="<moniker>" \
--identity="<identity>" \
--website="<website>" \
--details="<details>" \
--security-contact="<contact>" \
--chain-id="nois-1" \
--commission-rate="0.10" \
--commission-max-rate="0.20" \
--commission-max-change-rate="0.01" \
--min-self-delegation="1" \
--fees="10000unois" \
--from=<wallet_name>
SNAP_RPC=https://nois.rpc.m.anode.team: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
wget https://anode.team/unsafe-reset-all.sh && chmod u+x unsafe-reset-all.sh && ./unsafe-reset-all.sh noisd noisd
peers="b26e5ac4afbadf96ad31ee3aeb5e6557f2894037@65.108.199.222:30656"
sed -i.bak -e "s/^persistent_peers *=.*/persistent_peers = \"$peers\"/" $HOME/.noisd/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/.noisd/config/config.toml
curl -o - -L https://anode.team/Nois/main/anode.team_nois_wasm.tar.lz4 | lz4 -c -d - | tar -x -C $HOME/.noisd/
sudo systemctl restart noisd && journalctl -fu noisd -o cat
ANODE.TEAM
https://test.anode.team/noisPeer
d3ce97769bc00a698aee0f40eb8de0b2279b6b2c@65.109.28.177:32656Live peers
https://anode.team/Nois/test/peers.txtGenesis
https://anode.team/Nois/test/genesis.jsonAddrbook
https://anode.team/Nois/test/addrbook.jsonwget -O Nois.sh https://anode.team/Nois/test/Nois.sh && chmod u+x Nois.sh && ./Nois.sh
git clone https://github.com/noislabs/noisd
cd noisd
git checkout v1.0.4
make install
noisd init <moniker> --chain-id nois-testnet-004
noisd config chain-id nois-testnet-005
noisd keys add <wallet_name>
curl https://anode.team/Nois/test/genesis.json > ~/.noisd/config/genesis.json
curl https://anode.team/Nois/test/addrbook.json > ~/.noisd/config/addrbook.json
SEEDS=""
PEERS="d3ce97769bc00a698aee0f40eb8de0b2279b6b2c@65.109.28.177:32656"
sed -i.bak -e "s/^seeds *=.*/seeds = \"$SEEDS\"/; s/^persistent_peers *=.*/persistent_peers = \"$PEERS\"/" $HOME/.noisd/config/config.toml
sed -i.bak -e "s/^minimum-gas-prices *=.*/minimum-gas-prices = \"0.05unois\"/" $HOME/.noisd/config/app.toml
sudo tee /etc/systemd/system/noisd.service > /dev/null <<EOF
[Unit]
Description=Nois
After=network-online.target
[Service]
User=$USER
ExecStart=$(which noisd) start
Restart=always
RestartSec=3
LimitNOFILE=4096
[Install]
WantedBy=multi-user.target
EOF
sudo systemctl daemon-reload && sudo systemctl enable noisd
sudo systemctl restart noisd && journalctl -fu noisd -o cat
noisd tx staking create-validator \
--amount=1000000unois \
--pubkey=$(noisd tendermint show-validator) \
--moniker="<moniker>" \
--identity="<identity>" \
--website="<website>" \
--details="<details>" \
--security-contact="<contact>" \
--chain-id="nois-testnet-005" \
--commission-rate="0.10" \
--commission-max-rate="0.20" \
--commission-max-change-rate="0.01" \
--min-self-delegation="1" \
--fees="10000unois" \
--from=<wallet_name>
SNAP_RPC=https://nois.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 noisd noisd
peers="d3ce97769bc00a698aee0f40eb8de0b2279b6b2c@65.109.28.177:32656"
sed -i.bak -e "s/^persistent_peers *=.*/persistent_peers = \"$peers\"/" $HOME/.noisd/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/.noisd/config/config.toml
curl -o - -L https://anode.team/Nois/test/anode.team_nois_wasm.tar.lz4 | lz4 -c -d - | tar -x -C $HOME/.noisd/
sudo systemctl restart noisd && journalctl -fu noisd -o cat