Skip to content

IOTA need to add web tool (bip39) #705

Description

@Vitokhv

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>

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions