top of page

Six Sigma Sports

Bet on the future of Sports Betting. Be a part of SIX SIGMA SPORTS - an application re-imagining the sports betting experience on the Sports, Gaming & Entertainment Network (SGE Network), a decentralised sovereign blockchain built using the Cosmos SDK

Chain ID: sge-testnet-2

Public Endpoints:

✅ RPC

rpc.sge.ppnv.space:29657

✅ API / REST

 api.sge.ppnv.space 

✅ gRPC

grpc.sge.ppnv.space:29090

✅ gRPC Web

grpc.sge.ppnv.space:29091

Genesis:

curl -Ls https://service.ppnv.space/sge/genesis.json > $HOME/.sge/config/genesis.json

Peering:

✅ Seed Node

✅ Live Peers

372f5c8c046f1a46b4c8576d03b1cef914ac015e@​rpc.sge.ppnv.space:29656

✅ Addrbook #update every hour

curl -Ls https://service.ppnv.space/sge/addrbook.json > $HOME/.sge/config/addrbook.json

✅ State Sync #snapshot-interval = 1000

sudo systemctl stop sged
cp $HOME/.sge/data/priv_validator_state.json $HOME/.sge/priv_validator_state.json.backup
sged tendermint unsafe-reset-all --home $HOME/.sge
STATE_SYNC_RPC=http://rpc.sge.ppnv.space:29657
STATE_SYNC_PEER=372f5c8c046f1a46b4c8576d03b1cef914ac015e@​rpc.sge.ppnv.space:29656
LATEST_HEIGHT=$(curl -s $STATE_SYNC_RPC/block | jq -r .result.block.header.height)
SYNC_BLOCK_HEIGHT=$(($LATEST_HEIGHT - 1000))
SYNC_BLOCK_HASH=$(curl -s "$STATE_SYNC_RPC/block?height=$SYNC_BLOCK_HEIGHT" | jq -r .result.block_id.hash)
sed -i.bak -e "s|^enable *=.*|enable = true|" $HOME/.sge/config/config.toml
sed -i.bak -e "s|^rpc_servers *=.*|rpc_servers = \"$STATE_SYNC_RPC,$STATE_SYNC_RPC\"|" \
  $HOME/.sge/config/config.toml
sed -i.bak -e "s|^trust_height *=.*|trust_height = $SYNC_BLOCK_HEIGHT|" \
  $HOME/.sge/config/config.toml
sed -i.bak -e "s|^trust_hash *=.*|trust_hash = \"$SYNC_BLOCK_HASH\"|" \
  $HOME/.sge/config/config.toml
sed -i.bak -e "s|^persistent_peers *=.*|persistent_peers = \"$STATE_SYNC_PEER\"|" \
  $HOME/.sge/config/config.toml
mv $HOME/.sge/priv_validator_state.json.backup $HOME/.sge/data/priv_validator_state.json
sudo systemctl restart sged && journalctl -u sged -f --no-hostname -o cat

bottom of page