Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vinacc/seed-generator
Crypto Wallet Seed Phrase Generator
https://github.com/vinacc/seed-generator
bitcoin bitcoin-wallet seed seed-phrase seed-phrase-generator seedphrase wallet wallet-generator
Last synced: 4 days ago
JSON representation
Crypto Wallet Seed Phrase Generator
- Host: GitHub
- URL: https://github.com/vinacc/seed-generator
- Owner: vinacc
- Created: 2024-05-12T10:54:55.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-06-01T17:35:09.000Z (6 months ago)
- Last Synced: 2024-10-11T20:21:59.990Z (about 1 month ago)
- Topics: bitcoin, bitcoin-wallet, seed, seed-phrase, seed-phrase-generator, seedphrase, wallet, wallet-generator
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# seed-generator
Wallet Seed Phrase GeneratorThis simple script in python or HTML allows you to perform the following operations to generate a Cryptocurrency Wallet easily and securely.
* Simulates the random roll of 256 dice
* Runs SHASUM256 on the obtained string and then calculates the checksum of the string
* Displays the 24 words from the seed phraseI recommend downloading the file seed-generator.py o seed-generator.html to a new computer not connected to the internet and running it from there.
Write down the 24 words in non-connected mode, perhaps on several sheets of paper, taking care to store them safely.The 24 words are the only way to get access to your wallet, whoever gets hold of them will get hold of your funds.
The HTML generator is also available online at [my site](https://www.vinacc.eu/crypto/)
If you want to support this work please consider a very small donation in BTC to my BTC wallet: `bc1qcl0svsng2yal9m5dr8k5dp0lpvrp555p83s2e9`
## Usage
### Python
To run the script, download the file seed-generator.py and run it from the shell with the following command:
`python3 seed-generator.py`
### HTML
Open the `seed-generator.html` file with your favourite browser and click on the Generate button.
## License
This project is distributed under the MIT License. Go to https://opensource.org/licenses/MIT for more details.[js-sha256] - (https://github.com/emn178/js-sha256)