- IPFS: (https://ipfs.io/ipns/k51qzi5uqu5dinregegexaehc13j4apbdhy7rx2georee1sud0wcyanu4tttvf)
- Vercel: (https://chain-park.vercel.app/)
npm run dev
or yarn dev
to start web app (while in next-app directory)
truffle compile
compile all smart contracts (while in truffle directory)
truffle migrate --network {NETWORK}
deploy contracts to specified network (Goerli, Sepolia, dev)
truffle run verify --network {NETWORK} {CONTRACT NAME}
verify on etherscan (Goerli)
- Install truffle globally
npm install -g truffle
if not already installed - Install truffle dependencies
cd truffle && npm install
- Install next.js dependencies
cd next-app && npm install