Welcome to validator AlxVoy ⚡ ANODE.TEAM
Website
- https://mun.money/Twitter
- https://twitter.com/munblockchainTelegram
- https://t.me/munblockchainTelegram News
- https://t.me/munchainDiscord
- https://discord.gg/munGithub
https://github.com/munblockchainMedium
https://medium.com/@munblockchainLink to PRE-IDO
https://presale.mun.money/ANODE.TEAM
https://main.anode.team/munPing
https://ping.pub/beezeePeer
8b4f7c709bef4cc585b18ed7ecce539794a2273d@174.138.176.146:31656Live peers
https://anode.team/MUN/main/peers.txtwget -O MUN.sh https://anode.team/MUN/main/MUN.sh && chmod u+x MUN.sh && ./MUN.sh
Memory
CPUs
Disk
git clone https://github.com/munblockchain/mun-node
cd mun-node
git checkout v1.0.0
make install
mund init <moniker> --chain-id mun-1
mund config chain-id mun-1
mund keys add <wallet_name>
curl https://anode.team/MUN/main/genesis.json > ~/.mun/config/genesis.json
curl https://anode.team/MUN/main/addrbook.json > ~/.mun/config/addrbook.json
SEEDS="036c564e3de76ffad3e013bea52c16eb1de5a400@31.14.40.112:26656"
PEERS="8b4f7c709bef4cc585b18ed7ecce539794a2273d@174.138.176.146:31656"
sed -i.bak -e "s/^seeds *=.*/seeds = \"$SEEDS\"/; s/^persistent_peers *=.*/persistent_peers = \"$PEERS\"/" $HOME/.mun/config/config.toml
sed -i.bak -e "s/^minimum-gas-prices *=.*/minimum-gas-prices = \"0umun\"/" $HOME/.mun/config/app.toml
sudo tee /etc/systemd/system/mund.service > /dev/null <<EOF
[Unit]
Description=MUN
After=network-online.target
[Service]
User=$USER
ExecStart=$(which mund) start
Restart=always
RestartSec=3
LimitNOFILE=4096
[Install]
WantedBy=multi-user.target
EOF
sudo systemctl daemon-reload && sudo systemctl enable mund
sudo systemctl restart mund && journalctl -fu mund -o cat
mund tx staking create-validator \
--amount=1000000umun \
--pubkey=$(mund tendermint show-validator) \
--moniker="<moniker>" \
--identity="<identity>" \
--website="<website>" \
--details="<details>" \
--security-contact="<contact>" \
--chain-id="mun-1" \
--commission-rate="0.10" \
--commission-max-rate="0.20" \
--commission-max-change-rate="0.01" \
--min-self-delegation="1" \
--fees="0umun" \
--from=<wallet_name>
SNAP_RPC=https://mun.rpc.m.anode.team: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
wget https://anode.team/unsafe-reset-all.sh && chmod u+x unsafe-reset-all.sh && ./unsafe-reset-all.sh mund .mun
peers="8b4f7c709bef4cc585b18ed7ecce539794a2273d@174.138.176.146:31656"
sed -i.bak -e "s/^persistent_peers *=.*/persistent_peers = \"$peers\"/" $HOME/.mun/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/.mun/config/config.toml
curl -o - -L https://anode.team/MUN/main/anode.team_mun_wasm.tar.lz4 | lz4 -c -d - | tar -x -C $HOME/.mun/data/
sudo systemctl restart mund && journalctl -fu mund -o cat
sudo systemctl stop mund && \
cp $HOME/.mun/data/priv_validator_state.json $HOME/.mun/priv_validator_state.json.backup && \
rm -rf $HOME/.mun/data/
curl -o - -L https://anode.team/MUN/main/anode.team_mun.tar.lz4 | lz4 -c -d - | tar -x -C $HOME/.mun
curl -o - -L https://anode.team/MUN/main/anode.team_mun_wasm.tar.lz4 | lz4 -c -d - | tar -x -C $HOME/.mun/data/
mv $HOME/.mun/priv_validator_state.json.backup $HOME/.mun/data/priv_validator_state.json && \
sudo systemctl restart mund && journalctl -fu mund -o cat
ANODE.TEAM
https://test.anode.team/munPeer
43e963bdd46de74b32d5c4830abb7d14563a746a@65.109.28.177:13656Live peers
https://anode.team/MUN/test/peers.txtwget -O MUN.sh https://anode.team/MUN/test/MUN.sh && chmod u+x MUN.sh && ./MUN.sh
git clone https://github.com/munblockchain/mun
cd mun
git checkout v3.0.3
make install
mund init <moniker> --chain-id testmun-3
mund config chain-id testmun-3
mund keys add <wallet_name>
curl https://anode.team/MUN/test/genesis.json > ~/.mun/config/genesis.json
curl https://anode.team/MUN/test/addrbook.json > ~/.mun/config/addrbook.json
SEEDS="74bea3fc80aa128c9a757873f2348baa23e9921a@157.245.77.89:26656"
PEERS="43e963bdd46de74b32d5c4830abb7d14563a746a@65.109.28.177:13656"
sed -i.bak -e "s/^seeds *=.*/seeds = \"$SEEDS\"/; s/^persistent_peers *=.*/persistent_peers = \"$PEERS\"/" $HOME/.mun/config/config.toml
sed -i.bak -e "s/^minimum-gas-prices *=.*/minimum-gas-prices = \"0utmun\"/" $HOME/.mun/config/app.toml
sudo tee /etc/systemd/system/mund.service > /dev/null <<EOF
[Unit]
Description=MUN
After=network-online.target
[Service]
User=$USER
ExecStart=$(which mund) start
Restart=always
RestartSec=3
LimitNOFILE=4096
[Install]
WantedBy=multi-user.target
EOF
sudo systemctl daemon-reload && sudo systemctl enable mund
sudo systemctl restart mund && journalctl -fu mund -o cat
mund tx staking create-validator \
--amount=1000000utmun \
--pubkey=$(mund tendermint show-validator) \
--moniker="<moniker>" \
--identity="<identity>" \
--website="<website>" \
--details="<details>" \
--security-contact="<contact>" \
--chain-id="testmun-3" \
--commission-rate="0.10" \
--commission-max-rate="0.20" \
--commission-max-change-rate="0.01" \
--min-self-delegation="1" \
--fees="0utmun" \
--from=<wallet_name>
SNAP_RPC=https://mun.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 mund .mun
peers="43e963bdd46de74b32d5c4830abb7d14563a746a@65.109.28.177:13656"
sed -i.bak -e "s/^persistent_peers *=.*/persistent_peers = \"$peers\"/" $HOME/.mun/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/.mun/config/config.toml
curl -o - -L https://anode.team/MUN/test/anode.team_mun_wasm.tar.lz4 | lz4 -c -d - | tar -x -C $HOME/.mun/data/
sudo systemctl restart mund && journalctl -fu mund -o cat