{% extends "onboarding/base.html" %} {% block title %}Node Identity{% endblock %} {% block content %}

Node Identity

Your node needs a cryptographic identity to participate in the PRSM network. This is an Ed25519 keypair used for authentication and message signing.

{% if existing_identity %}
Existing Identity Found
Node ID:
{{ existing_identity.node_id[:16] }}...
Display Name:
{{ existing_identity.display_name }}
Identity file: {{ identity_path }}
{% endif %}
A human-readable name for your node (not used for authentication)
Upload a node_identity.json file exported from another PRSM node
Back
{% endblock %}