Skip to content

Instantly share code, notes, and snippets.

View Cheeriee's full-sized avatar
🎯
Blockchain Developer in a jiffy...

Cheerie Cheeriee

🎯
Blockchain Developer in a jiffy...
View GitHub Profile
@Cheeriee
Cheeriee / Voting.sol
Created June 5, 2025 14:35
Voting Smart Contract
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.26;
contract Voting {
address public admin;
uint256 public votingStart;
bool public votingEnded;
struct VoterCard{
uint256 age;
@Cheeriee
Cheeriee / Voting.sol
Created June 5, 2025 14:25
Voting Smart Contract
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.26;
contract Voting {
address public admin;
uint256 public votingStart;
bool public votingEnded;
struct VoterCard{
uint256 age;
https://github.com/Cheeriee/Voting-Contract.git
@Cheeriee
Cheeriee / Voting.sol
Created June 5, 2025 13:52
Voting Smart Contract
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.26;
contract Voting {
address public admin;
uint256 public votingStart;
bool public votingEnded;
struct VoterCard{
uint256 age;
https://github.com/Cheeriee/Voting-Contract.git