Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/luxuereal/wallet-electron
https://github.com/luxuereal/wallet-electron
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/luxuereal/wallet-electron
- Owner: luxuereal
- Created: 2023-06-16T01:33:34.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-12-11T08:27:23.000Z (about 1 year ago)
- Last Synced: 2023-12-11T09:34:03.660Z (about 1 year ago)
- Language: JavaScript
- Size: 1010 KB
- Stars: 6
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# JSWallet
![Screen Shot](https://github.com/mmick66/jswallet/blob/master/assets/Screen_Shot.png)
This is a companion to my [Medium tutotial](https://medium.com/@michael.m/lets-create-a-secure-hd-bitcoin-wallet-in-electron-react-js-575032c42bf3).
It is **not** production code and should be used for educational puproses only.
> It seems that at this moment, testnet is experiencing a tremendous amount of tranffic which has rendered the network practically unusable. The faucets are down and the transactions are stuck. We will all have to wait for while.
## Installation
```
git clone https://github.com/mmick66/jswallet.git
cd jswallet
npm install
npm start
```## Design Principles
Key derivation is the beating heart of a Bitcoin Wallet and most security concerns have to do with this first step.
My code is mainly intended as an illustration of the following pattern:
![Key Derivation](https://github.com/mmick66/jswallet/blob/master/assets/Key%20Chain.png)
## Building
This project was built using [electron-forge](https://github.com/electron-userland/electron-forge). I have had problems building it in some machines and apparently the [issue is not uncommon](https://github.com/electron-userland/electron-forge/issues/434). In theory it should work like so...
```
npm publish
```## Warnings
As stated above this is **not** production code.
It is set to work with *testnet* by default but by a simple change in the `env.js` it could well function with real bitcoins!