web
Grow Open Source (by gitcoinco)
openzeppelin-contracts
OpenZeppelin Contracts is a library for secure smart contract development. (by OpenZeppelin)
SurveyJS: Build JSON-Driven Surveys and Forms with Full Data Control
Add the SurveyJS UI components to your JS app (React/Angular/Vue3). Securely collect and analyze data without sending it to 3rd-party servers. Fully customizable, works with any backend, and ideal for data-heavy apps. Learn more.
surveyjs.io
featured
| web | openzeppelin-contracts | |
|---|---|---|
| 175 | 240 | |
| 1,813 | 26,844 | |
| 1.0% | 0.7% | |
| 0.0 | 9.5 | |
| over 1 year ago | 5 days ago | |
| JavaScript | Solidity | |
| GNU General Public License v3.0 or later | MIT License |
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
web
Posts with mentions or reviews of web. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2025-09-19.
- Tell HN: Phishing campaign claiming to be GitHub Developer Fund
The application link is https://gitcoin-developers.com. Obviously copied site from https://gitcoin.co
- The Open Source Pledge & Evolving Models of OSS Funding: A Comprehensive Analysis
In summary, the open source funding landscape is in a state of evolution. The Sentry Open Source Pledge has introduced a new paradigm by calling on companies to directly support OSS maintainers. Yet, it is only one piece of a larger puzzle that includes subscription services like Tidelift, blockchain-based solutions from License-Token.com, and community-driven approaches like those from Gitcoin.
- Insights into Tokenization and Open Source Sustainability
Abstract: This post explores how tokenization is revolutionizing the sustainability of open-source projects. We dive into the background of open-source funding challenges, define key blockchain and tokenization concepts, discuss core features, and present practical use cases with real-world examples. Furthermore, we analyze the challenges and limitations facing decentralized funding models and conclude with a future outlook on innovations that hold promise for open-source sustainability. Throughout the post, we include links to authoritative resources like Basic Attention Token (BAT), Filecoin, and Gitcoin, as well as the Original Article for deeper insights.
- Open Source Funding and Blockchain Project Funding: A New Era for Innovation
Blockchain technology emerged after the 2008 financial crisis, offering new ways to fund projects. Blockchain’s inherent transparency provides trust through immutable ledgers. This trust is critical when funding social impact projects and technological developments. Platforms like Gitcoin utilize decentralized finance to empower community fundraising.
- Unleashing the Power of Gitcoin and Quadratic Funding: A New Frontier in Decentralized Innovation
Abstract: This post explores how Gitcoin and the quadratic funding model are revolutionizing decentralized innovation. We explain the background of open-source development and blockchain funding, detail the key concepts behind quadratic funding, and provide practical examples of its application. In addition, we critically assess challenges and limitations while highlighting emerging trends and innovations that may shape the future of community-driven finance and open-source sustainability. Links to authoritative sources and related projects (such as Gitcoin, Vitalik Buterin, and more) are included to provide further reading and context.
For additional reading on related topics, check out these authoritative resources: • Gitcoin Official Site • Open-Source Licensing Models on Blockchain • Blockchain for Open-Source Funding • Arbitrum and Community Governance • Arbitrum and Cross-Chain Bridges
- Gitcoin Funding Rounds: Empowering the Open Source Ecosystem
Open-source software has become the backbone of modern digital innovation. Yet, sustaining such projects financially has historically been a challenge. Gitcoin (visit Gitcoin) emerged as a solution to this problem, offering community-funded grants and rounds that empower developers and ensuring projects that serve the public interest are well-supported. This post delves into the mechanics of Gitcoin funding rounds, the role of blockchain technology in enhancing transparency, and how mechanisms like Quadratic Funding maximize community impact. We also discuss the influence of partnerships, industry trends, and security implications, which are essential topics for developers and technology enthusiasts alike.
- The Future of Crowdfunding Open Source Projects with Blockchain
Abstract: This blog post explores the convergence of blockchain technology with crowdfunding for open source projects. We dive deep into how platforms like Gitcoin, Open Collective, and KickICO are reshaping funding models. With technical insights, historical context, practical use cases, and upcoming trends, we illustrate how blockchain achieves transparency, security, and democratization in project funding. We also shed light on challenges such as regulatory hurdles and technical scalability, while providing support through tables, bullet lists, and relevant backlinks to authoritative resources and insightful Dev.to posts.
- Axie Infinity’s Blockchain: A Catalyst for Open Source Funding
For example, platforms like Gitcoin already use similar principles—leveraging quadratic funding to prioritize community-backed contributions.
- License-Token: A New Paradigm for OSS Sustainability
Imagine an OSS project that traditionally relied on sporadic donations. With License-Token, contributions become tokenized. Developers receiving tokens from platforms such as GitCoin or managed through OpenCollective can reinvest those tokens to support further development. This creates a self-sustaining ecosystem where funding, development, and governance are linked seamlessly.
openzeppelin-contracts
Posts with mentions or reviews of openzeppelin-contracts. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2025-08-08.
- Safe and Version-Agnostic Deployment to Consistent Addresses Across EVM Networks
In this explanation, we use OpenZeppelin’s TransparentUpgradeableProxy.
- Arbitrum and Open Source Tools for NFT Development: Unleashing Blockchain Scalability and Innovation
In parallel with these scalability enhancements, the open source movement has accelerated blockchain innovation. Resources like OpenZeppelin Contracts provide pre‑audited libraries for smart contract development. Open source tools empower developers to iterate quickly, achieve transparency, and establish community governance over projects. Moreover, sustainable open source funding models—such as Gitcoin and GitHub Sponsors—help projects maintain long‑term development and security.
- Open Source Tools for NFT Development on Arbitrum: Pioneering the Future of Digital Assets
- OpenZeppelin Contracts: Secure Smart Contract Development Made Easy
- OpenZeppelin Contracts: A Secure Library for Smart Contract Development
- Make NFT using ERC721
ERC721 is a standard that describes how to build NFTs on EVM compatible blockchains. We use the OppenZeppelin implementaion of ERC721
- Mode - Comprehensive Starter Guide
// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.20; import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v5.0.0/contracts/token/ERC20/ERC20.sol"; interface Sfs { function register(address _recipient) external returns (uint256 tokenId); } contract ModeToken is ERC20 { address feeReceiver = msg.sender; constructor() ERC20("ModeTokenSFSTest", "SFST2") { //Example amount to mint our ERC20 _mint(msg.sender, 1000 10 * 18); // This is the SFS contract address on testnet Sfs sfsContract = Sfs(0xBBd707815a7F7eb6897C7686274AFabd7B579Ff6); //Registers this contract and assigns the NFT //to the deployer of this contract sfsContract.register(msg.sender); } }
- Blockchain transactions decoding: making wallet activity understandable
Lets look the events of Open Zeppelin’s ERC20 token contract:
- Construir e implementar un VAULT (bóveda) ERC20 en Shardeum
- Are ERC-777 Unsafe?
ERC-777 is difficult to implement properly, due to its susceptibility to different forms of attack(opens in a new tab). It is recommended to use ERC-20 instead. This page remains as a historical archive.
What are some alternatives?
When comparing web and openzeppelin-contracts you can also consider the following projects:
grouparoo - 🦘 The Grouparoo Monorepo - open source customer data sync framework
solmate - Modern, opinionated, and gas optimized building blocks for smart contract development.
hackclub - 🌎 Hack Club is a worldwide community of high school hackers. We make things. We help one another. We have fun.
hardhat - Hardhat is a development environment to compile, deploy, test, and debug your Ethereum software.
Gravitational Teleport - The easiest, and most secure way to access and protect all of your infrastructure.
truffle - :warning: The Truffle Suite is being sunset. For information on ongoing support, migration options and FAQs, visit the Consensys blog. Thank you for all the support over the years.
SurveyJS: Build JSON-Driven Surveys and Forms with Full Data Control
Add the SurveyJS UI components to your JS app (React/Angular/Vue3). Securely collect and analyze data without sending it to 3rd-party servers. Fully customizable, works with any backend, and ideal for data-heavy apps. Learn more.
surveyjs.io
featured