Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ilanolkies/hello-world-rsk
Hello world RSK
https://github.com/ilanolkies/hello-world-rsk
Last synced: 17 days ago
JSON representation
Hello world RSK
- Host: GitHub
- URL: https://github.com/ilanolkies/hello-world-rsk
- Owner: ilanolkies
- Created: 2020-03-23T17:51:29.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-01-24T01:41:54.000Z (almost 2 years ago)
- Last Synced: 2024-10-12T05:49:07.984Z (about 1 month ago)
- Language: JavaScript
- Size: 859 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Hello world RSK
Hello World decentralized application in RSK network.
Try it: https://ilanolkies/hello-world-rsk/
Read the blog post: https://ilanolkies.com/post/Hello-world-to-descentralized-applications
## Run locally
In one terminal:
```
npm i
npx truffle develop
truffle(develop)> migrate
```In another terminal:
```
cd dapp
yarn
yarn start
```## Run on testnet
```
cd dapp
yarn
yarn build
```Serve it with
```
yarn global add serve
serve -s build
```## Source
- `contracts/`: smart contracts for the dapp
- `test/` : unit tests for smart contracts
- `migrations/`: smart contract deployment scripts
- `dapp/`: react app to operate with smart contracts