https://github.com/engageintellect/btc-wallet-generator
A BIP32 Bitcoin wallet generator using Python.
https://github.com/engageintellect/btc-wallet-generator
Last synced: about 1 year ago
JSON representation
A BIP32 Bitcoin wallet generator using Python.
- Host: GitHub
- URL: https://github.com/engageintellect/btc-wallet-generator
- Owner: engageintellect
- Created: 2024-03-26T06:09:54.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-27T06:02:50.000Z (about 2 years ago)
- Last Synced: 2025-02-06T13:48:43.261Z (over 1 year ago)
- Language: Python
- Size: 21.7 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# btc-wallet-generator
A simple Bitcoin wallet generator that generates a Bitcoin wallet address and private key. It is written in Python and uses the `bitcoin` library to generate the keys. It also uses a FastAPI server to serve the keys via an API endpoint.
## Getting Started
To get started, clone the repository and install the dependencies.
```bash
git clone https://github.com/engageintellect/btc-wallet-generator
cd btc-wallet-generator
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
python3 main.py
```
**NOTE:** You can also run the Next.js frontend client code. You can find the code [here](https://github.com/engageintellect/wally)