@openzeppelin/wizard-cairo v1.1.0
OpenZeppelin Contracts Wizard for Cairo
Interactively build a contract out of components from OpenZeppelin Contracts for Cairo. 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/cairo
Installation
npm install @openzeppelin/wizard-cairo
Contract types
The following contract types are supported:
erc20erc721erc1155accountgovernormultisigvestingcustom
Each contract type has functions/constants as defined below.
Functions
print
function print(opts?: ERC20Options): stringfunction print(opts?: ERC721Options): stringfunction print(opts?: ERC1155Options): stringfunction print(opts?: AccountOptions): stringfunction print(opts?: MultisigOptions): stringfunction print(opts?: GovernorOptions): stringfunction print(opts?: VestingOptions): stringfunction print(opts?: CustomOptions): stringReturns a string representation of a contract generated using the provided options. If opts is not provided, uses defaults.
defaults
const defaults: Required<ERC20Options>const defaults: Required<ERC721Options>const defaults: Required<ERC1155Options>const defaults: Required<AccountOptions>const defaults: Required<MultisigOptions>const defaults: Required<GovernorOptions>const defaults: Required<VestingOptions>const defaults: Required<CustomOptions>The default options that are used for print.
isAccessControlRequired
function isAccessControlRequired(opts: Partial<ERC20Options>): booleanfunction isAccessControlRequired(opts: Partial<ERC721Options>): booleanfunction isAccessControlRequired(opts: Partial<ERC1155Options>): booleanfunction isAccessControlRequired(opts: Partial<CustomOptions>): 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
account,governor, andvestinghave their own ways of handling permissions and do not support theaccessoption. Thus, those types do not includeisAccessControlRequired.
Contract specific functions
erc20.getInitialSupply
Calculates the initial supply that would be used in an ERC20 contract based on a given premint amount and number of decimals.
premintPremint amount in token units, may be fractionaldecimalsThe number of decimals in the token
Returns premint with zeros padded or removed based on decimals.
Throws an error if premint has more than one decimal character or is more precise than allowed by the decimals argument.
Examples
Import the contract type(s) or function categories (for example, erc20 or utils) that you want to use from the @openzeppelin/wizard-cairo package:
import { erc20 } from '@openzeppelin/wizard-cairo';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:
const contract = erc20.print({
...erc20.defaults,
upgradeable: true,
});6 months ago
9 months ago
10 months ago
11 months ago
12 months ago
12 months ago
1 year ago
10 months ago
1 year ago
1 year ago
1 year ago
2 years ago
1 year ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
4 years ago