CoreZeppelin is OpenZeppelin version for Core Blockchain which is using EdDSA for signature verification in contrast to Ethereum and other EVM-based chains.
A library for secure smart contract development. Build on a solid foundation of community-vetted code.
- Implementations of standards like ERC20 and ERC721.
- Flexible role-based permissioning scheme.
- Reusable Solidity components to build custom contracts and complex decentralized systems.
π§ Not sure how to get started? Check out Contracts Wizard β an interactive smart contract generator.
Important
OpenZeppelin Contracts uses semantic versioning to communicate backwards compatibility of its API and storage layout. For upgradeable contracts, the storage layout of different major versions should be assumed incompatible, for example, it is unsafe to upgrade from 4.9.3 to 5.0.0. Learn more at Backwards Compatibility.
We use NPM tags to clearly distinguish between audited and non-audited versions of our package:
| Tag | Purpose | Description |
|---|---|---|
| latest | β Audited releases | Stable, audited versions of the package. This is the default version installed when users run npm install @openzeppelin/contracts. |
| dev | π§ͺ Final but not audited | Versions that are finalized and feature-complete but have not yet been audited. This version is fully tested, can be used in production and is covered by the bug bounty. |
| next | π§ Release candidates | Pre-release versions that are not final. Used for testing and validation before the version becomes a final dev or latest release. |
npm install @corezeppelin/contractsβ Installs the latest audited release (latest).
npm install @corezeppelin/contracts@devβ Installs the latest unaudited release (dev).
Warning
When installing via git, it is a common error to use the master branch. This is a development branch that should be avoided in favor of tagged releases. The release process involves security measures that the master branch does not guarantee.
[!WARNING]
Foundry installs the latest version initially, but subsequent forge update commands will use the master branch.
forge install OpenZeppelin/openzeppelin-contractsAdd @openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/ in remappings.txt.
Once installed, you can use the contracts in the library by importing them:
pragma solidity ^0.8.20;
import {ERC721} from "@openzeppelin/contracts/token/ERC721/ERC721.sol";
contract MyCollectible is ERC721 {
constructor() ERC721("MyCollectible", "MCO") {
}
}If you're new to smart contract development, head to Developing Smart Contracts to learn about creating a new project and compiling your contracts.
To keep your system secure, you should always use the installed code as-is, and neither copy-paste it from online sources nor modify it yourself. The library is designed so that only the contracts and functions you use are deployed, so you don't need to worry about it needlessly increasing gas costs.
This library provides CBC (Core Blockchain) naming conventions as aliases for ERC standards, allowing you to use CBC naming (CBC20, CBC721, etc.) while maintaining full ERC compatibility.
The alias approach allows you to use CBC naming while leveraging the existing ERC implementations. This provides:
- Full compatibility with ERC standards
- CBC naming for Core Blockchain ecosystem
- No code duplication - all functionality inherited
- Easy maintenance - single source of truth
We use Solidity's import aliasing feature combined with wrapper contracts to create CBC aliases:
// contracts/token/CBC20/CBC20.sol
pragma solidity ^0.8.20;
import {ERC20 as CBC20Base} from "../ERC20/ERC20.sol";
import {IERC20 as ICBC20} from "../ERC20/IERC20.sol";
/**
* @dev CBC20 is an alias for ERC20, providing Core Blockchain compatibility
*/
abstract contract CBC20 is CBC20Base {
// All ERC20 functionality is available through inheritance
// You can add CBC-specific functionality here if needed
}Key Benefits:
- β Simple and clean - Minimal boilerplate
- β No code duplication - Inherits all functionality
- β Maintains full compatibility - Works with all ERC20 tooling
- β Easy to maintain - Changes to ERC20 automatically propagate
- β Type-safe - Full Solidity type checking
Start with interface aliases - they're the simplest:
// contracts/token/CBC20/ICBC20.sol
pragma solidity ^0.8.20;
import {IERC20} from "../ERC20/IERC20.sol";
/**
* @title ICBC20
* @dev Core Blockchain compatible ERC20 interface
*/
interface ICBC20 is IERC20 {
// All IERC20 functions are inherited
}Create wrapper contracts that inherit from ERC implementations:
// contracts/token/CBC20/CBC20.sol
pragma solidity ^0.8.20;
import {ERC20 as _ERC20} from "../ERC20/ERC20.sol";
import {ICBC20} from "./ICBC20.sol";
import {IERC20Metadata as ICBC20Metadata} from "../ERC20/extensions/IERC20Metadata.sol";
/**
* @title CBC20
* @dev Core Blockchain compatible ERC20 token implementation
*
* This contract is an alias for ERC20, providing the same functionality
* under the CBC naming convention for Core Blockchain compatibility.
*/
abstract contract CBC20 is _ERC20, ICBC20, ICBC20Metadata {
// All functionality inherited from ERC20
}For extensions, follow the same pattern:
// contracts/token/CBC20/extensions/CBC20Permit.sol
pragma solidity ^0.8.20;
import {ERC20Permit as _ERC20Permit} from "../../ERC20/extensions/ERC20Permit.sol";
import {CBC20} from "../CBC20.sol";
import {ICBC20Permit} from "./ICBC20Permit.sol";
/**
* @title CBC20Permit
* @dev Core Blockchain compatible ERC20 Permit extension
*/
abstract contract CBC20Permit is CBC20, _ERC20Permit, ICBC20Permit {
// All ERC20Permit functionality inherited
}Once aliases are created, use them in your contracts:
// contracts/MyToken.sol
pragma solidity ^0.8.20;
import {CBC20} from "./token/CBC20/CBC20.sol";
import {CBC20Permit} from "./token/CBC20/extensions/CBC20Permit.sol";
contract MyToken is CBC20, CBC20Permit {
constructor(
string memory name,
string memory symbol,
uint256 initialSupply
) CBC20(name, symbol) CBC20Permit(name) {
_mint(msg.sender, initialSupply);
}
}- Keep Aliases Minimal - Aliases should be thin wrappers without unnecessary overrides
- Document the Alias Relationship - Always document that it's an alias in comments
- Use Consistent Naming - Contract aliases:
CBC20,CBC721,CBC1155; Interface aliases:ICBC20,ICBC721,ICBC1155 - Maintain Import Paths - Keep ERC implementations as the source of truth
- Handle Extensions Properly - Extensions should inherit from both the base alias and the extension
contracts/
βββ token/
β βββ ERC20/ # Original ERC20 (keep as-is)
β β βββ ERC20.sol
β β βββ IERC20.sol
β βββ CBC20/ # CBC alias directory
β βββ CBC20.sol # Wrapper contract
β βββ ICBC20.sol # Interface wrapper
The guides in the documentation site will teach about different concepts, and how to use the related contracts that OpenZeppelin Contracts provides:
- Access Control: decide who can perform each of the actions on your system.
- Tokens: create tradeable assets or collectibles for popular ERC standards like ERC-20, ERC-721, ERC-1155, and ERC-6909.
- Utilities: generic useful tools including non-overflowing math, signature verification, and trustless paying systems.
The full API is also thoroughly documented, and serves as a great reference when developing your smart contract application. You can also ask for help or follow Contracts' development in the community forum.
Finally, you may want to take a look at the guides on our blog, which cover several common use cases and good practices. The following articles provide great background reading, though please note that some of the referenced tools have changed, as the tooling in the ecosystem continues to rapidly evolve.
- The Hitchhikerβs Guide to Smart Contracts in Ethereum will help you get an overview of the various tools available for smart contract development, and help you set up your environment.
- A Gentle Introduction to Ethereum Programming, Part 1 provides very useful information on an introductory level, including many basic concepts from the Ethereum platform.
- For a more in-depth dive, you may read the guide Designing the Architecture for Your Ethereum Application, which discusses how to better structure your application and its relationship to the real world.
This project is maintained by OpenZeppelin with the goal of providing a secure and reliable library of smart contract components for the ecosystem. We address security through risk management in various areas such as engineering and open source best practices, scoping and API design, multi-layered review processes, and incident response preparedness.
The OpenZeppelin Contracts Security Center contains more details about the secure development process.
The security policy is detailed in SECURITY.md as well, and specifies how you can report security vulnerabilities, which versions will receive security patches, and how to stay informed about them. We run a bug bounty program on Immunefi to reward the responsible disclosure of vulnerabilities.
The engineering guidelines we follow to promote project quality can be found in GUIDELINES.md.
Past audits can be found in audits/.
Smart contracts are a nascent technology and carry a high level of technical risk and uncertainty. Although OpenZeppelin is well known for its security audits, using OpenZeppelin Contracts is not a substitute for a security audit.
OpenZeppelin Contracts is made available under the MIT License, which disclaims all warranties in relation to the project and which limits the liability of those that contribute and maintain the project, including OpenZeppelin. As set out further in the Terms, you acknowledge that you are solely responsible for any use of OpenZeppelin Contracts and you assume all risks associated with any such use.
OpenZeppelin Contracts exists thanks to its contributors. There are many ways you can participate and help build high quality software. Check out the contribution guide!
OpenZeppelin Contracts is released under the MIT License.
Your use of this Project is governed by the terms found at www.corezeppelin.com/tos (the "Terms").