create projects
Showing
README.md
0 → 100644
contracts/Voting.sol
0 → 100644
This diff is collapsed.
frontend/package.json
0 → 100644
frontend/public/index.html
0 → 100644
frontend/src/App.js
0 → 100644
frontend/src/index.css
0 → 100644
frontend/src/index.js
0 → 100644
hardhat.config.js
0 → 100644
This diff is collapsed.
package.json
0 → 100644
{ | ||
"name": "voting-dapp", | ||
"version": "1.0.0", | ||
"description": "DApp de vote sur Ethereum", | ||
"main": "index.js", | ||
"scripts": { | ||
"test": "hardhat test", | ||
"dev": "cd frontend && npm run dev", | ||
"compile": "hardhat compile", | ||
"deploy": "hardhat run scripts/deploy.js --network localhost", | ||
"node": "hardhat node" | ||
}, | ||
"keywords": [ | ||
"ethereum", | ||
"dapp", | ||
"voting", | ||
"blockchain", | ||
"solidity" | ||
], | ||
"author": "", | ||
"license": "MIT", | ||
"devDependencies": { | ||
"@nomiclabs/hardhat-ethers": "^2.2.3", | ||
"@nomiclabs/hardhat-waffle": "^2.0.6", | ||
"@openzeppelin/contracts": "^4.9.3", | ||
"chai": "^4.3.8", | ||
"ethereum-waffle": "^4.0.10", | ||
"ethers": "^5.7.2", | ||
"hardhat": "^2.17.3" | ||
} | ||
} | ||
\ No newline at end of file |
scripts/deploy.js
0 → 100644
test/Voting.test.js
0 → 100644
Please register or sign in to comment