Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/danny-pham/seed-ethereum-wallet
Seed Ethereum Wallet is a simple JavaScript library that allows you to generate seed phrases and create Ethereum wallets from these seed phrases.
https://github.com/danny-pham/seed-ethereum-wallet
Last synced: about 1 month ago
JSON representation
Seed Ethereum Wallet is a simple JavaScript library that allows you to generate seed phrases and create Ethereum wallets from these seed phrases.
- Host: GitHub
- URL: https://github.com/danny-pham/seed-ethereum-wallet
- Owner: danny-pham
- License: mit
- Created: 2024-02-25T02:33:20.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-03-03T14:33:10.000Z (9 months ago)
- Last Synced: 2024-10-01T16:17:34.157Z (about 2 months ago)
- Language: JavaScript
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Seed Ethereum Wallet
## Introduction
Seed Ethereum Wallet is a simple JavaScript library that allows you to generate seed phrases and create Ethereum wallets from these seed phrases.## Installation
You can install the library via npm or yarn:```
npm install seed-ethereum-wallet
```
or
```
yarn add seed-ethereum-wallet
```## Usage
Here's how to use the library to generate a seed phrase and create an Ethereum wallet from the seed phrase:
```
const seedEthereumWallet = require('seed-ethereum-wallet');// Generate a seed phrase
const seedPhrase = seedEthereumWallet.generateSeedPhrase();
console.log('Seed Phrase:', seedPhrase);// Create an Ethereum wallet from the seed phrase
const ethereumWallet = seedEthereumWallet.createEthereumWallet();
console.log('Ethereum Wallet:');
console.log('Address:', ethereumWallet.address);
console.log('Private Key:', ethereumWallet.privateKey);
```## License
This library is released under the MIT License.