Interactively build a contract out of components from OpenZeppelin Contracts. Provide parameters and desired features for the kind of contract that you want, and the Wizard will generate all of the code necessary. The resulting code is ready to be compiled and deployed, or it can serve as a starting point and customized further with application specific logic.
This package provides a programmatic API. For a web interface, see https://wizard.openzeppelin.com
npm install @openzeppelin/wizard
The following contract types are supported:
erc20erc721erc1155stablecoinrealWorldAssetaccountgovernorcustom
Note that stablecoin and realWorldAsset are experimental and may be subject to change.
Each contract type implements a common API with methods that take contract-specific options (e.g., ERC20Options for erc20, ERC721Options for erc721, etc.). This ensures type safety and allows for contract-specific features.
function print(opts?: Options): stringReturns a string representation of a contract generated using the provided options. If opts is not provided, uses defaults.
function getVersionedRemappings(opts?: Options): string[]Returns an array of remappings that map unversioned import prefixes to versioned import prefixes. For example:
[
"@openzeppelin/contracts/=@openzeppelin/contracts@5.5.0/",
"@openzeppelin/contracts-upgradeable/=@openzeppelin/contracts-upgradeable@5.5.0/"
]If the contract options include upgradeability, the upgradeable remapping is included. If opts is not provided, uses defaults.
const defaults: Required<Options>The default options that are used for print and getVersionedRemappings.
function isAccessControlRequired(opts: Partial<Options>): booleanWhether any of the provided options require access control to be enabled. If this returns true, then calling print with the same options would cause the access option to default to 'ownable' if it was undefined or false.
Note that contracts such as
accounthave their own way of handling permissions and do not support theaccessoption. Thus, that type does not includeisAccessControlRequired.
Import the contract type(s) that you want to use from the @openzeppelin/wizard package:
import { erc20 } from '@openzeppelin/wizard';To generate the source code for an ERC20 contract with all of the default settings:
const contract = erc20.print();To generate the source code for an ERC20 contract with a custom name and symbol, along with some custom settings:
const contract = erc20.print({
name: 'ExampleToken',
symbol: 'ETK',
burnable: true,
premint: '1000000',
});To generate the source code for an ERC20 contract with all of the defaults but is upgradeable using the UUPS proxy pattern:
const contract = erc20.print({
...erc20.defaults,
upgradeable: 'uups',
});