"Qwoyn" mainnet services 

RPC  https://rpc-qwoyn.theamsolutions.info 
REST API https://rest-qwoyn.theamsolutions.info
gRPC https://grpc-qwoyn.theamsolutions.info
SEED 2a22c052e6ffe875bf38d1c25ad7e04daa638967@seed-qwoyn.theamsolutions.info:22256
Exlorer : https://explorer.theamsolutions.info

 

TMKMS Remote signer service - LINK
  

NODE SETUP INSTRUCTIONS
 

Install GO & Dependencies  HERE

git clone https://github.com/cosmic-horizon/QWOYN
cd QWOYN
ver=$(curl -s https://rpc-qwoyn.theamsolutions.info/abci_info? | jq -r ."result"."response"."version")
git checkout v${ver}
make install

qwoynd init <moniker> --chain-id qwoyn-1

wget -qO $HOME/.qwoynd/config/genesis.json https://raw.githubusercontent.com/cosmic-horizon/mainnet/main/genesis.json

sudo tee /etc/systemd/system/qwoynd.service << EOF
[Unit]
Description=Qwoynd-1
After=network-online.target
#
[Service]
User=$USER
ExecStart=$(which qwoynd) start
RestartSec=10
LimitNOFILE=65535
#
[Install]
WantedBy=multi-user.target
EOF

sudo systemctl enable qwoynd
sudo systemctl daemon-reload
 


STATE SYNC SERVICE
 


sudo systemctl stop qwoynd
qwoynd  tendermint  unsafe-reset-all --home $HOME/.qwoynd

SNAP_RPC="https://rpc-qwoyn.theamsolutions.info: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

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\"|" $HOME/.qwoynd/config/config.toml

wget -qO $HOME/.qwoynd /config/addrbook.json  https://snapshots.theamsolutions.info/qwoyn-addrb.json 

sudo systemctl restart qwoynd 
sudo journalctl -u qwoynd -fn 50 -o cat
 

 

 DATA SNAPSHOT
(updated every 6 hrs.)


#check snapshot info  : curl -s https://snapshots.theamsolutions.info | egrep -o ">qwoyn-snap*.*tar" | tr -d ">"

snap=$(curl -s https://snapshots.theamsolutions.info | egrep -o ">qwoyn-snap*.*tar" | tr -d ">")
wget -P $HOME https://snapshots.theamsolutions.info/${snap}
sudo systemctl stop qwoynd
mv $HOME/.qwoynd/data/priv_validator_state.json $HOME
rm -rf  $HOME/.qwoynd/data
tar xf $HOME/${snap} -C $HOME/.qwoynd
mv $HOME/priv_validator_state.json $HOME/.qwoynd/data/
wget -qO $HOME/.qwoynd /config/addrbook.json  https://snapshots.theamsolutions.info/qwoyn-addrb.json
sudo systemctl restart qwoynd
rm $HOME/${snap}
sudo journalctl -u qwoynd -fn 50 -o cat

 

 

GOOD LUCK!

 

AM Solutions © Copyright. All rights reserved.

We need your consent to load the translations

We use a third-party service to translate the website content that may collect data about your activity. Please review the details in the privacy policy and accept the service to view the translations.