> ## Documentation Index
> Fetch the complete documentation index at: https://utexo-e7ed9bd0-update.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Node UI Actions

On the Node Page (`/node/{nodeId}`), users have access to several interactive actions: `/init`, `/lock`, `/unlock`, and `/nodeInfo`.

<Steps>
  <Step title="/nodeInfo" titleSize="h3">
    * Functionality: Automatically retrieves and displays the node's current status each time the node page is opened.
    * Error handling: If the node is locked or encounters issues, the UI displays an appropriate error message.
    * Use case: Provides real-time visibility into the node's status and helps diagnose any operational issues.
  </Step>

  <Step title="/init" titleSize="h3">
    * Functionality: Initializes the node after its creation, making it ready for operation.
    * Process:
      * During initialization, the system generates a mnemonic and provides it to the user.
      * The mnemonic is a critical security feature and must be securely saved by the user.
          <Warning>
            The mnemonic is required for recovering the node in case of future issues and for ensuring secure access in all subsequent interactions. Save it securely.
          </Warning>
    * Use case: Mandatory step after node creation to enable further actions.
  </Step>

  <Step title="/lock" titleSize="h3">
    * Functionality: Secures the node by locking it, preventing unauthorized access.
    * Process:
      * The user enters a password to lock the node.
      * The node remains locked until the correct password is provided to unlock it.
    * Use case: Protects sensitive node operations when not actively in use.
  </Step>

  <Step title="/unlock" titleSize="h3">
    * Functionality: Unlocks the node, allowing it to resume normal operations.
    * Process:
      * The user enters the correct password to reverse the lock status.
      * Once unlocked, the node becomes fully operational.
    * Use case: Enables the user to access and manage the node after it has been secured.
  </Step>
</Steps>
