> ## 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.

# Create RLN Node

<Steps>
  <Step title="Initiate RLN Node Creation" titleSize="h3">
    * Navigate to the `/nodes` page. Here you'll see an overview of your current nodes and the option to create new ones.
          <Frame>
            <img src="https://mintcdn.com/utexo-e7ed9bd0-update/PxPD_LwdJ-NvquOf/images/image.png?fit=max&auto=format&n=PxPD_LwdJ-NvquOf&q=85&s=cbdef9f0bcf948ae0c57e18149079583" alt="Image" width="848" height="451" data-path="images/image.png" />
          </Frame>
      Click the "Create Node" button. This redirects you to a page where you can begin the node creation process.
  </Step>

  <Step title="Configure Your RLN Node" titleSize="h3">
    * On the redirected page, fill out the node creation form by entering a unique name for your new node. This name helps you identify the node in your dashboard.
    * After entering a name, click the "Create" button to submit the form and start the node creation process.

    <Frame>
      <img src="https://mintcdn.com/utexo-e7ed9bd0-update/PxPD_LwdJ-NvquOf/images/image-2.png?fit=max&auto=format&n=PxPD_LwdJ-NvquOf&q=85&s=1918d7c3959f97c468b73dddd8a88499" alt="Image" width="692" height="468" data-path="images/image-2.png" />
    </Frame>

    <Info>
      On the Regtest Network, block mining doesn't happen automatically. Manually mine blocks using the provided curl commands whenever you want the chain to advance or confirm activity.

      To mine blocks:

      ```text theme={null}
      curl --location 'http://18.119.98.232:5000/execute' \
        --header 'Content-Type: application/json' \
        --data '{ "args": "mine 10" }'
      ```

      If you need test BTC, use the `sendtoaddress` command (acts like a local faucet), then manually mine a block with the curl command above to confirm it:

      ```text theme={null}
      curl --location 'http://18.119.98.232:5000/execute' \
        --header 'Content-Type: application/json' \
        --data '{ "args": "sendtoaddress <address> 0.1" }'
      ```
    </Info>
  </Step>

  <Step title="Monitor Node Creation Status" titleSize="h3">
    * After submitting the form, a new item is added to the nodes table on the `/nodes` page. Initially it will display a status of IN\_PROGRESS while the node is being built. During this phase you cannot perform operations with the node.
    * You can view detailed information by visiting `/nodes/{nodeId}`. That page shows current status, build progress, endpoint details, and other configurable options so you can monitor the node's setup process.

    <Frame>
      <img src="https://mintcdn.com/utexo-e7ed9bd0-update/PxPD_LwdJ-NvquOf/images/image-3.png?fit=max&auto=format&n=PxPD_LwdJ-NvquOf&q=85&s=7d1ea4dde5ff5d6c89ba290b37e5d938" alt="Image" width="570" height="171" data-path="images/image-3.png" />
    </Frame>

    #### Understanding statuses

    * **IN\_PROGRESS:** Node is under construction. No interactions can be made.
    * **RUNNING:** Node has been successfully built and is fully operational.
  </Step>

  <Step title="Final Verification" titleSize="h3">
    * Once the status changes to RUNNING, verify the node appears correctly in your dashboard and that you can access its features and settings.
          <Frame>
            <img src="https://mintcdn.com/utexo-e7ed9bd0-update/PxPD_LwdJ-NvquOf/images/image-4.png?fit=max&auto=format&n=PxPD_LwdJ-NvquOf&q=85&s=fde5e3b83e73d8e00407af1d0a2b0097" alt="Image" width="685" height="423" data-path="images/image-4.png" />
          </Frame>
  </Step>
</Steps>
