├── .github └── ISSUE_TEMPLATE │ └── custom.md ├── README.md ├── contracts └── BlockchainVoting.sol ├── hardhat.config.js ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── scripts └── deploy.js └── src ├── App.css ├── App.js ├── artifacts ├── build-info │ └── d5633721d6c4dc5e097b0ad820ffd2ee.json └── contracts │ └── BlockchainVoting.sol │ ├── BlockchainVoting.dbg.json │ └── BlockchainVoting.json ├── comp ├── FatcVoter.js ├── FatchCandi.js ├── Propsal.js ├── Sec.js └── Vote.js └── index.js /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KashifCh-eth/blockchain-voting-system-/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KashifCh-eth/blockchain-voting-system-/HEAD/README.md -------------------------------------------------------------------------------- /contracts/BlockchainVoting.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KashifCh-eth/blockchain-voting-system-/HEAD/contracts/BlockchainVoting.sol -------------------------------------------------------------------------------- /hardhat.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KashifCh-eth/blockchain-voting-system-/HEAD/hardhat.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KashifCh-eth/blockchain-voting-system-/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KashifCh-eth/blockchain-voting-system-/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KashifCh-eth/blockchain-voting-system-/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KashifCh-eth/blockchain-voting-system-/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KashifCh-eth/blockchain-voting-system-/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KashifCh-eth/blockchain-voting-system-/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KashifCh-eth/blockchain-voting-system-/HEAD/public/robots.txt -------------------------------------------------------------------------------- /scripts/deploy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KashifCh-eth/blockchain-voting-system-/HEAD/scripts/deploy.js -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KashifCh-eth/blockchain-voting-system-/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KashifCh-eth/blockchain-voting-system-/HEAD/src/App.js -------------------------------------------------------------------------------- /src/artifacts/build-info/d5633721d6c4dc5e097b0ad820ffd2ee.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KashifCh-eth/blockchain-voting-system-/HEAD/src/artifacts/build-info/d5633721d6c4dc5e097b0ad820ffd2ee.json -------------------------------------------------------------------------------- /src/artifacts/contracts/BlockchainVoting.sol/BlockchainVoting.dbg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KashifCh-eth/blockchain-voting-system-/HEAD/src/artifacts/contracts/BlockchainVoting.sol/BlockchainVoting.dbg.json -------------------------------------------------------------------------------- /src/artifacts/contracts/BlockchainVoting.sol/BlockchainVoting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KashifCh-eth/blockchain-voting-system-/HEAD/src/artifacts/contracts/BlockchainVoting.sol/BlockchainVoting.json -------------------------------------------------------------------------------- /src/comp/FatcVoter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KashifCh-eth/blockchain-voting-system-/HEAD/src/comp/FatcVoter.js -------------------------------------------------------------------------------- /src/comp/FatchCandi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KashifCh-eth/blockchain-voting-system-/HEAD/src/comp/FatchCandi.js -------------------------------------------------------------------------------- /src/comp/Propsal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KashifCh-eth/blockchain-voting-system-/HEAD/src/comp/Propsal.js -------------------------------------------------------------------------------- /src/comp/Sec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KashifCh-eth/blockchain-voting-system-/HEAD/src/comp/Sec.js -------------------------------------------------------------------------------- /src/comp/Vote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KashifCh-eth/blockchain-voting-system-/HEAD/src/comp/Vote.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KashifCh-eth/blockchain-voting-system-/HEAD/src/index.js --------------------------------------------------------------------------------