Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rachmanaldiansyah/decentralized-todo-app
Build Full-Stack Decentralized To-Do List Blockchain Application On Ethereum using JavaScript. Tutorial: https://youtu.be/bMzaDu8n2r4
https://github.com/rachmanaldiansyah/decentralized-todo-app
blockchain ethereum ethereum-dapp
Last synced: 8 days ago
JSON representation
Build Full-Stack Decentralized To-Do List Blockchain Application On Ethereum using JavaScript. Tutorial: https://youtu.be/bMzaDu8n2r4
- Host: GitHub
- URL: https://github.com/rachmanaldiansyah/decentralized-todo-app
- Owner: rachmanaldiansyah
- Created: 2023-04-19T04:33:16.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-04-19T04:35:16.000Z (over 1 year ago)
- Last Synced: 2023-08-05T23:27:05.665Z (over 1 year ago)
- Topics: blockchain, ethereum, ethereum-dapp
- Language: JavaScript
- Homepage:
- Size: 166 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Decentralized to-do-application
To run the code, you need to run the following commands.
```shell
npm install
```You first need to compile the contract and upload it to the blockchain network. Run the following commands to compile and upload the contract.
```shell
npx hardhat compile
npx hardhat run --network volta scripts/deploy.js
```Once the contract is uploaded to the blockchain, copy the contract address and copy it in the .env file.
You can also use another blockchain by writing the blockchain's endpoint in hardhat-config.Once you have pasted your private key and contract address in the .env file, simply run command
```shell
node index.js
```and go to http://localhost:3000 to interact with the decentralized application.