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

Akash Network

PreviousMainnetsNextEmpower

Last updated 7 months ago

Was this helpful?

Endpoints

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

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

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

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

Peer: 73ef1c0f9bc77fd925decf7fa41f22a35b5dc76d@akash.declab.pro:26603

PEERS=73ef1c0f9bc77fd925decf7fa41f22a35b5dc76d@akash.declab.pro:26603,064b1c1a295ca9b3a1360283086f61705525aeed@192.175.53.243:26656,b9751d5a8b3c2f242b5de21c3d5ff6440d8765cd@52.30.142.144:26656,f31426d9fb39c2d97653722a34b4c72db71904c2@93.115.25.106:29656,37201c92625df2814a55129f73f10ab6aa2edc35@95.214.53.215:26696,34aa700c44f35abe8319428f173503ea7faee3b7@144.76.56.87:28656
sed -i.bak -e "s/^persistent_peers *=.*/persistent_peers = \"$PEERS\"/" ~/.akash/config/config.toml

Snapshot

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

# Reset tendermint chain
akash tendermint unsafe-reset-all

# Download and unpack the archive
curl -o - -L https://akash.declab.pro/latest.tar.lz4 | lz4 -c -d - | tar -x -C ~/.akash

State sync

RPC="https://akash.declab.pro:26601"

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\"|" ~/.akash/config/config.toml

Akash site
Akash Discord
Akash Github
Akash Telegram EN
Akash Telegram RU
Akash X
Guide
Deploy file
Delegate to us
Akash Network EXPLORER
RPC
API