Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/danny-pham/ethereum-seed-wallet-generator
https://github.com/danny-pham/ethereum-seed-wallet-generator
Last synced: 19 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/danny-pham/ethereum-seed-wallet-generator
- Owner: danny-pham
- License: mit
- Created: 2024-03-04T16:04:23.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-03-04T16:42:19.000Z (9 months ago)
- Last Synced: 2024-10-14T01:17:02.054Z (about 1 month ago)
- Language: JavaScript
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Ethereum Seed Wallet Generator
## Introduction
Ethereum Seed Wallet Generator is a JavaScript library that allows you to generate Ethereum wallets (addresses) from seed phrases. It relies on the Seed Ethereum Wallet library to generate wallets from seed phrases.## Installation
You can install the library via npm:```
npm install ethereum-seed-wallet-generator
```## Usage
Here's how to use the library to generate Ethereum wallets from seed phrases:```
const ethereumWalletGenerator = require('ethereum-seed-wallet-generator');// Generate seed phrase
const seedPhrase = 'your seed phrase here';// Create Ethereum wallet from seed phrase
const ethereumWallet = ethereumWalletGenerator.createEthereumWalletFromSeedPhrase(seedPhrase);
console.log('Ethereum Address:', ethereumWallet.address);
console.log('Ethereum Private Key:', ethereumWallet.privateKey);
```The createEthereumWalletFromSeedPhrase function takes a seed phrase as input and returns the corresponding Ethereum wallet, including the Ethereum address and private key.
## License
This library is released under the MIT License.