HIP-419: Explorer CRD. Status Active. Hanzo's own standard — read this before implementing against it.
The Explorer CRD is a Service facade for luxfi/explorer, the block explorer UI + API. It reads indexed chain data from a backing Indexer and presents a web UI for blocks, transactions, accounts, and contracts.
hanzo.ai/v1, plural explorers, shortname exp.
Same shape as Service (HIP-400). Conventionally:
image.repository: ghcr.io/luxfi/explorerINDEXER_URL, RPC_URLapiVersion: hanzo.ai/v1
kind: Explorer
metadata:
name: hanzo-explorer
namespace: hanzo
spec:
image:
repository: ghcr.io/luxfi/explorer
tag: 1.2.2
replicas: 2
env:
- name: INDEXER_URL
value: http://localhost:80
- name: RPC_URL
value: https://api.lux.network/mainnet/ext/bc/hanzo/rpc
ingress:
enabled: true
hosts:
- explore-hanzo.lux.network
Deployment, Service, optional Ingress.
~/work/hanzo/operator/src/controllers/service.rs (via Explorer facade).
Implemented in hanzoai/operator v0.3.0+. Primarily deployed on lux-k8s.