Gitopia

Endpoints
Genesis: https://gitopia.declab.pro/genesis.json
wget -O ~/.gitopia/config/genesis.json https://gitopia.declab.pro/genesis.json --inet4-only
Addrbook: https://gitopia.declab.pro/addrbook.json
wget -O ~/.gitopia/config/addrbook.json https://gitopia.declab.pro/addrbook.json --inet4-only
Peer: [email protected]:26627
PEERS=73ef1c0f9bc77fd925decf7fa41f22a35b5dc76d@gitopia.declab.pro:26627,[email protected]:36656,[email protected]:26356,[email protected]:11356,[email protected]:30656,[email protected]:26656
sed -i.bak -e "s/^persistent_peers *=.*/persistent_peers = \"$PEERS\"/" ~/.gitopia/config/config.toml
Snapshot
Link: https://gitopia.declab.pro/latest.tar.lz4
# Reset tendermint chain
gitopiad tendermint unsafe-reset-all
# Download and unpack the archive
curl -o - -L https://gitopia.declab.pro/latest.tar.lz4 | lz4 -c -d - | tar -x -C ~/.gitopia
State sync
RPC="https://gitopia.declab.pro:26625"
LATEST_HEIGHT=$(curl -s $RPC/block | jq -r .result.block.header.height); \
BLOCK_HEIGHT=$((LATEST_HEIGHT - 2000)); \
TRUST_HASH=$(curl -s "$RPC/block?height=$BLOCK_HEIGHT" | jq -r .result.block_id.hash)
sed -i.bak -E "s|^(enable[[:space:]]+=[[:space:]]+).*$|\1true| ; \
s|^(rpc_servers[[:space:]]+=[[:space:]]+).*$|\1\"$RPC,$RPC\"| ; \
s|^(trust_height[[:space:]]+=[[:space:]]+).*$|\1$BLOCK_HEIGHT| ; \
s|^(trust_hash[[:space:]]+=[[:space:]]+).*$|\1\"$TRUST_HASH\"|" ~/.gitopia/config/config.toml
Last updated
Was this helpful?