Skip to content

Latest commit

 

History

History
44 lines (29 loc) · 681 Bytes

README.md

File metadata and controls

44 lines (29 loc) · 681 Bytes

Expo bitcoin wallet app

This is a simple bitcoin wallet example for demonstration purposes only.

DO NOT USE THIS CODE FOR GENERATING MAINNET PRIVATE KEYS AND ADDRESSES!!!

 

 

To run the project follow these steps.

yarn install

There is an issue with cipher-base package with react-native so you need to make one change to it

Replace the second line at cipher-base/index.js from this

var Transform = require("stream").Transform;

to this code

var Transform = require("readable-stream");

Now you can run

yarn ios

or for Android

yarn android