UNPKG

seed-ethereum-wallet

Version:
11 lines (7 loc) 370 B
const seedEthereumWallet = require('./seed-ethereum-wallet'); const seedPhrase = seedEthereumWallet.generateSeedPhrase(); console.log('Seed Phrase:', seedPhrase); const ethereumWallet = seedEthereumWallet.createEthereumWallet(); console.log('Ethereum Wallet:'); console.log('Address:', ethereumWallet.address); console.log('Private Key:', ethereumWallet.privateKey);