Generación de direcciones de billetera 'Tezos'
1 respuesta
- votos
Escribí html simple con script JS:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<script src="eztz.min.js"></script>
</head>
<body>
<h3>Wallets:</h3>
<p id = "text-id"></p>
</body>
<script>
let text = "";
for (let i = 0; i < 10; i++) { // loop (repeat 10 times)
let mnemonic = eztz.crypto.generateMnemonic(); // generate mnemonic phrase
let password = Math.random().toString(36).substring(2, 15); // generate password
let wallet = eztz.crypto.generateKeys(mnemonic, password); // create wallet by password and mnemonic
// text with wallet info
text += "<br><b>Mnemonic:</b> " + mnemonic +
"<br><b>Password:</b> " + password +
"<br><b>Public key: </b>" + wallet.pkh +
"<br><b>Private key: </b>" + wallet.sk + "</br>";
}
document.getElementById('text-id').innerHTML = text; // put list of keys to html
</script>
</html>
Tienes que seguir unos sencillospasos:
Finalmente,debe ver lapágina con 10billeterasgeneradas.
I wrote simple html with JS script:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<script src="eztz.min.js"></script>
</head>
<body>
<h3>Wallets:</h3>
<p id = "text-id"></p>
</body>
<script>
let text = "";
for (let i = 0; i < 10; i++) { // loop (repeat 10 times)
let mnemonic = eztz.crypto.generateMnemonic(); // generate mnemonic phrase
let password = Math.random().toString(36).substring(2, 15); // generate password
let wallet = eztz.crypto.generateKeys(mnemonic, password); // create wallet by password and mnemonic
// text with wallet info
text += "<br><b>Mnemonic:</b> " + mnemonic +
"<br><b>Password:</b> " + password +
"<br><b>Public key: </b>" + wallet.pkh +
"<br><b>Private key: </b>" + wallet.sk + "</br>";
}
document.getElementById('text-id').innerHTML = text; // put list of keys to html
</script>
</html>
You have to make some simple steps:
Finally you have to see page with 10 generated wallets.
¿Puede alguien darme unaguíapaso apasoparaprincipiantes sobre cómo crear una cantidad de (digamos 100) direccionesnuevas (hashes de clavepública,comenzando con algo como 'tz')parami billeteratezos?