bip39 icon indicating copy to clipboard operation
bip39 copied to clipboard

IOTA need to add web tool (bip39)

Open Vitokhv opened this issue 4 months ago • 0 comments

I found a code snippet on Reddit that mentions bip39 Can this token be added to the list for a future version? (web tool bip39 mnemonic code)

BIP39 Mnemonic IOTA wallet seed generator (github) IOTA seed generator live (web version)

Image
<html>
<head><script src="./iota.js"></script></head>
<body>
<script>
mnemonic = Iota.Bip39.randomMnemonic();
seed = Iota.Ed25519Seed.fromMnemonic(mnemonic);
path = new Iota.Bip32Path("m/44'/4218'/0'/0'/0'");
walletSeed = seed.generateSeedFromPath(path);
WalletKeyPair = walletSeed.keyPair();
Ed25519Address = new Iota.Ed25519Address(WalletKeyPair.publicKey);
WalletAddress = Ed25519Address.toAddress();
address = (Iota.Bech32Helper.toBech32(Iota.ED25519_ADDRESS_TYPE, WalletAddress, 'iota'));
document.write('Key:<br>'+mnemonic+'<br><br>Address:<br>'+address);
</script>
</body>
</html>

Vitokhv avatar Oct 16 '25 07:10 Vitokhv