Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/auralshin/reactnative-dapp
To be able to build a Decentralised application over React Native, feel free to contribute. It's open for Hacktoberfest 2020
https://github.com/auralshin/reactnative-dapp
blockchain decentralized-applications drizzle ethereum-contract ethereum-dapp hacktoberfest hacktoberfest2020 react react-native
Last synced: 6 days ago
JSON representation
To be able to build a Decentralised application over React Native, feel free to contribute. It's open for Hacktoberfest 2020
- Host: GitHub
- URL: https://github.com/auralshin/reactnative-dapp
- Owner: auralshin
- Created: 2020-07-08T05:24:47.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-01-24T03:19:00.000Z (almost 2 years ago)
- Last Synced: 2024-05-02T05:11:21.585Z (8 months ago)
- Topics: blockchain, decentralized-applications, drizzle, ethereum-contract, ethereum-dapp, hacktoberfest, hacktoberfest2020, react, react-native
- Language: JavaScript
- Homepage:
- Size: 3.3 MB
- Stars: 1
- Watchers: 4
- Forks: 1
- Open Issues: 24
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Building React Native app using drizzle
## Packages Required
- truffle
- ganache-cli
- react-native
- react
- @drizzle/store## Project Structure
├── android
├── contracts
├── ios
├── migrations
├── gitignore
├── test
├── App.js
├── app.json
├── index.js
├── shims.js
├── global.js
├── rn-cli.config.js
├── package.json
├── truffle-config.js
├── truffle.js
└── yarn.lock
## Steps to follow- run npm install or yarn install
- install truffle and ganache-cli
- set ANDROID_HOME in path properly
- Start ganache-cli: ganache-cli -b 3
- Compile and migrate contracts: truffle compile && truffle migrate
- Reverse ports: adb reverse tcp:8545 tcp:8545
- react-native start
- Install app: react-native run-android ( on different terminal )