A simple Solidity smart contract for a voting system DApp on Flow EVM testnet.
DecentraCounter is a basic smart contract implemented in Solidity that maintains a single unsigned integer value called count. Users can interact with the contract to increase this value through a public function, and anyone on the network can read the current count value. This contract is intentionally minimal to showcase the structure of state variables, functions, and visibility specifiers in Solidity. It serves as an ideal foundation for beginners learning smart contract development or as a boilerplate for more advanced state-based dApps.