https://codesandbox.io/embed/ml5pfe?codemirror=1

Reply to this note

Please Login to reply.

Discussion

PUEDES GENERAR TUS PROPIAS LLAVES NOSTR

import {

generatePrivateKey,

getPublicKey

}

from 'nostr-tools'

let privateKey = generatePrivateKey()

let publicKey = getPublicKey(privateKey)

console.log('private key = ' + privateKey)

console.log('public key = ' + publicKey)