Skip to main content

Documentation Index

Fetch the complete documentation index at: https://orderly.network/docs/llms.txt

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

Receive WebSocket client status.

Example

import { useWsStatus } from "@orderly.network/hooks";

const status = useWsStatus();

useEffect(() => {
  if (status === WsNetworkStatus.Connected) {
    // do something
  }
}, [status]);