A simple decentralized guestbook in solidity.
This repo contains two packages:
- dapp (the guestbook contract)
- uses truffle, typechain, docker-compose
- webapp (a frontend for the guestbook)
- uses create-react-app, web3, metamask, redux-saga
- Install dependencies:
yarn - Build artifacts:
yarn build
In one terminal start dev blockchain:
cd packages/dapptruffle develop --log
In another terminal deploy guestbook to dev blockchain:
cd packages/dapptruffle migrate --network develop
Connect metamask to the development blockchain:
http://localhost:9545(network_id: 1111)
Start webapp:
cd packages/webappyarn start