Etherdata Blockchain Dapps Demos
List of projects based on Etherdata Blockchain
-
Simple File Upload (or https://demos-eta.vercel.app/) (source: here
-
Transaction (source: here)
-
File Storage(source: here and smart contract: here)
Install dependencies
yarn
Test
yarn test
Start dev server
yarn dev
Project structure
examples/
├─ faucet/
├─ file-upload/
├─ personal_storage/
├─ transaction/
packages/
├─ ui/
├─ file_storage_contract/
Development guide
For more monorepo development info, please refer to Turbo repo’s official website. Or monorepo.tools for more detail explained on monorepo.
- Create any new smart contract under packages/ folder
- Create any new app under examples/ folder
- Add dependency under your examples/YOUR_APP/package.json
- Change
.env.example
to.env
and fill in the value
The frontend applications are written in React with typescript using Next.js framework. And all examples are hosted on Vercel. Please check their offical documentations for more details.