Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chunkangwong/web3-election-dapp
This is a simple election decentralized application (DApp) built using the Ethereum blockchain and the Truffle framework. It is based on the tutorial by Dapp University: https://www.dappuniversity.com/articles/the-ultimate-ethereum-dapp-tutorial
https://github.com/chunkangwong/web3-election-dapp
dapp etheruem truffle web3
Last synced: 26 days ago
JSON representation
This is a simple election decentralized application (DApp) built using the Ethereum blockchain and the Truffle framework. It is based on the tutorial by Dapp University: https://www.dappuniversity.com/articles/the-ultimate-ethereum-dapp-tutorial
- Host: GitHub
- URL: https://github.com/chunkangwong/web3-election-dapp
- Owner: chunkangwong
- License: mit
- Created: 2023-09-16T17:35:12.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-09-16T17:43:11.000Z (over 1 year ago)
- Last Synced: 2024-11-10T23:34:42.613Z (3 months ago)
- Topics: dapp, etheruem, truffle, web3
- Language: JavaScript
- Homepage:
- Size: 532 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# web3-election-dapp
This is a simple election decentralized application (DApp) built using the Ethereum blockchain and the Truffle framework. It is based on the tutorial by Dapp University: https://www.dappuniversity.com/articles/the-ultimate-ethereum-dapp-tutorial with the following modifications to make it work with the latest versions of the dependencies:
- Upgraded pragma solidity from 0.4.2 to 0.5.16 in [Election.sol](./contracts/Election.sol). This will depend on the version of the compiler you have installed.
- Updated the contructor function in [Election.sol](./contracts/Election.sol) from `function Election () public {` to `constructor () public {` as per the latest Solidity syntax.