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

@@ -63,6 +63,15 @@ object Main extends IOWebApp {
.printWith(jsonPrinter)
)
))
),
button(
Styles.button,
"generate keypair",
onClick --> (_.foreach(_ =>
store.input.set(
NIP19.encode(PrivateKey(randomBytes32()))
)
))
)
)