Create RLN Node
Configure Your RLN Node
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.
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:
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:
curl --location 'http://18.119.98.232:5000/execute' \
--header 'Content-Type: application/json' \
--data '{ "args": "sendtoaddress <address> 0.1" }'Monitor Node Creation Status
After submitting the form, a new item is added to the nodes table on the
/nodespage. 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.
Understanding statuses
IN_PROGRESS: Node is under construction. No interactions can be made.
RUNNING: Node has been successfully built and is fully operational.
Last updated