DNL Services
Telegram channelDiscord DNLExplorer & WalletConsole Akash
  • Decloud Nodes Lab
  • Guides
    • Console Akash overview
    • Cosmos SDK
      • Deploy nodes (RPC,validator)
      • CLI commands
      • Create priv_validator_key.json
  • Blockchains Lab
    • Mainnets
      • Akash Network
      • Empower
      • Gitopia
      • Juno
      • Realio Network
      • Kyve Protocol
      • Sentinelhub
      • Source
    • Testnets
      • Akash Sandbox
  • Software
    • 3proxy
    • V2RAY
Powered by GitBook
On this page
  • Endpoints
  • Snapshot
  • State sync

Was this helpful?

Edit on GitHub
  1. Blockchains Lab
  2. Mainnets

Empower

PreviousAkash NetworkNextGitopia

Last updated 8 months ago

Was this helpful?

Endpoints

Genesis: https://empower.declab.pro/genesis.json

wget -O  ~/.empowerchain/config/genesis.json https://empower.declab.pro/genesis.json --inet4-only

Addrbook: https://empower.declab.pro/addrbook.json

wget -O ~/.empowerchain/config/addrbook.json https://empower.declab.pro/addrbook.json --inet4-only

Peer: 73ef1c0f9bc77fd925decf7fa41f22a35b5dc76d@empower.declab.pro:26609

PEERS=73ef1c0f9bc77fd925decf7fa41f22a35b5dc76d@empower.declab.pro:26609,bb8f0eb3ce0e8ad9043f884db42865cfd293851f@81.0.218.135:21956,901ce8eedf012ec5c74bf040f4901a42e4c66e0c@142.132.193.194:26656,ee0973d050e077a2f8cb7e90969560b0fe255929@148.113.159.22:17456,1ad467e3c21a7c30a9e1dc68166570f40b467cad@151.80.27.157:26656,f7eb23352efa7aba7ba9aa56fe034ede139deab3@65.109.116.119:16856
sed -i.bak -e "s/^persistent_peers *=.*/persistent_peers = \"$PEERS\"/" ~/.empowerchain/config/config.toml

Snapshot

Link: https://empower.declab.pro/latest.tar.lz4

# Reset tendermint chain
empowerd tendermint unsafe-reset-all
# Download and unpack the archive
curl -o - -L https://empower.declab.pro/latest.tar.lz4 | lz4 -c -d - | tar -x -C ~/.empowerchain

State sync

RPC="https://empower.declab.pro:26607"
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\"|" ~/.empowerchain/config/config.toml

Site
Discord
Github
Telegram
Medium
X
Guide
Deploy file
Delegate to us
Empower EXPLORER
RPC
API