generate keypair and display nsec.

This commit is contained in:
fiatjaf
2023-03-25 09:49:33 -03:00
parent 7633eb3615
commit c2a826e854
2 changed files with 10 additions and 0 deletions

View File

@@ -80,6 +80,7 @@ object Components {
div(
cls := "text-md",
sk.map { k => entry("private key (hex)", k.value.toHex) },
sk.map { k => entry("nsec", NIP19.encode(k)) },
entry("public key (hex)", pp.pubkey.value.toHex),
if pp.relays.size > 0 then
Some(entry("relay hints", pp.relays.reduce((a, b) => s"$a, $b")))