Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.peaq.xyz/llms.txt

Use this file to discover all available pages before exploring further.

Use the info service to confirm how the core node is configured before running sensitive operations.
ros2 service call /peaq_core_node/info \
  peaq_ros2_interfaces/srv/GetNodeInfo {}
Example response (abridged):
{
  "network": "agung",
  "wallet_address": "5F...xyz",
  "confirmation_mode": "FAST",
  "events_enabled": true,
  "version": "1.3.0",
  "build_timestamp": "2025-10-30T09:55:12Z"
}
The service returns:
  • Current network + RPC endpoint
  • Wallet address used for signing transactions
  • Default confirmation mode
  • Event streaming status
  • Package version and build metadata

Operational Uses

  • Validate you are pointing at the correct network before funding wallets
  • Capture node metadata in deployment runbooks or monitoring dashboards
  • Compare versions across fleet deployments to ensure consistency
Pair this with Event Streams to monitor transaction outcomes in real time.