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
In one terminal:
npm i
npx truffle develop
truffle(develop)> migrate
In another terminal:
cd dapp
yarn
yarn start
cd dapp
yarn
yarn build
Serve it with
yarn global add serve
serve -s build
contracts/
: smart contracts for the dapptest/
: unit tests for smart contractsmigrations/
: smart contract deployment scriptsdapp/
: react app to operate with smart contracts