Celo

Celo

Celo Community

Total projects
Total grants
Project updates
0%
Milestones

chain-memory đź§  memochain

memochain is a decentralized, Solidity-based smart contract that functions as a permanent on-chain memory vault. It enables users to store short text-based “memories” directly on the blockchain, ensuring that each entry is securely timestamped, author-verified, and publicly transparent. Every memory written to the contract becomes part of an immutable chain of thoughts — preserving user-generated content in a trustless and censorship-resistant manner. The project demonstrates how blockchain…

ChainShelf

In traditional library systems, book borrow and return records are stored in centralized databases — which can be altered, lost, or corrupted. ChainShelf uses blockchain technology to create a decentralized record-keeping system where every book checkout and return is logged permanently and transparently. This project is built for Solidity beginners who want to understand: Smart contract logic Access control (owner vs. users) Event logging for transparency Real-world blockchain applications

AbQuiz

AbQuiz is a simple smart contract that introduces new developers to core blockchain concepts such as: 1. Ownership control (onlyOwner modifier) 2. Data immutability and transparency 3. Hashing for secure answer storage (keccak256) 4. Event emission (QuizWon) for on-chain notifications Once deployed, the contract lets the quiz owner set a question and store a hashed version of the correct answer (so nobody can read it directly from the blockchain). Participants then submit answers — the…

WEB3_CODE-CONTRACT

LoanChain is a beginner-friendly Solidity smart contract designed to keep an immutable on-chain record of all borrowed and repaid funds. It acts as a transparent ledger where every loan and repayment is permanently stored on the blockchain — ensuring trust, transparency, and immutability between parties. This project is perfect for developers learning how to: Use structs, arrays, and events in Solidity Store and retrieve on-chain data Create transparent and auditable financial records

ChainPoll

ChainPoll is a minimal on-chain polling system where users can create polls with multiple options, cast one vote per address, and view results at any time. It focuses on clarity, safety, and transparency, making it ideal for first projects and tutorials. What it does Create polls 📝 with a question and 2–10 options, emitting events for easy tracking. Allow addresses to vote 🗳️ exactly once per poll, preventing duplicates. View poll info and results 📊 via public read functions for frontend or…