Hope

Docs

Queries

LCD REST and CometBFT RPC on the test gateway.

All reads go through https://test-gateway.hopenetwork.io. This portal proxies /gateway/api and /gateway/rpc so the browser does not need gateway CORS.

curl -sS https://test-gateway.hopenetwork.io/api/cosmos/base/tendermint/v1beta1/node_info
curl -sS https://test-gateway.hopenetwork.io/rpc/status
const res = await fetch(
  'https://test-gateway.hopenetwork.io/api/cosmos/bank/v1beta1/balances/hope1…'
);
const json = await res.json();

JSON-RPC POSTs must hit /rpc/ (trailing path), not bare /rpc.

Hope custom prefixes:

  • /hope/incentives/v1/
  • /hope/trustscore/v1/
  • /hope/tokenomics/v1/
  • /hope/campaign/v1/
  • /hope/donation/v1/
  • /hope/ngoregistry/v1/
  • /hope/pqauth/v1/

Open the Query tool for every catalogued path with curl + fetch snippets.