Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/newbreedofgeek/ethereum-todo-app
TODO app with Ethereum Blockchain based backend
https://github.com/newbreedofgeek/ethereum-todo-app
dapp ethereum solidity web3
Last synced: 12 days ago
JSON representation
TODO app with Ethereum Blockchain based backend
- Host: GitHub
- URL: https://github.com/newbreedofgeek/ethereum-todo-app
- Owner: newbreedofgeek
- Created: 2018-10-15T09:51:21.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-10-22T07:29:14.000Z (over 6 years ago)
- Last Synced: 2024-11-14T13:11:41.930Z (2 months ago)
- Topics: dapp, ethereum, solidity, web3
- Language: JavaScript
- Size: 1000 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ethereum-todo-app
TODO app with Ethereum Blockchain based backend. Based on the tutorial series by Eat the Blocks https://www.youtube.com/channel/UCZM8XQjNOyG2ElPpEUtNasA with the following updates so far.1) Using Solidity 0.4.22
### Requirements (to be installed globally via NPM - rest can be found in package.json):
- Ganache CLI (This is the blockchain we will connect to)
- Truffle
- Nodemon### Why I like this setup:
- Back and Front ends in a single project
- Using Web3.js via NPM
- Using Webpack driven `truffle-solidity-loader` to load .sol files and automatically complile and load the abstraction into web3 whenever your .sol contracts change. This is very cool!