Skip to main content
Glama

OpenZeppelin Contracts MCP Server

Official
by OpenZeppelin
README.md2.5 kB
# OpenZeppelin Contracts Wizard for Stylus Interactively build a contract out of components from OpenZeppelin Contracts for Stylus. 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/stylus ### Installation `npm install @openzeppelin/wizard-stylus` ### Contract types The following contract types are supported: - `erc20` - `erc721` - `erc1155` Each contract type has functions/constants as defined below. ### Functions #### `print` ```js function print(opts?: ERC20Options): string ``` ```js function print(opts?: ERC721Options): string ``` ```js function print(opts?: ERC1155Options): string ``` Returns a string representation of a contract generated using the provided options. If `opts` is not provided, uses [`defaults`](#defaults). #### `defaults` ```js const defaults: Required<ERC20Options> ``` ```js const defaults: Required<ERC721Options> ``` ```js const defaults: Required<ERC1155Options> ``` The default options that are used for [`print`](#print). #### `isAccessControlRequired` ```js function isAccessControlRequired(opts: Partial<ERC20Options>): boolean ``` ```js function isAccessControlRequired(opts: Partial<ERC721Options>): boolean ``` ```js function isAccessControlRequired(opts: Partial<ERC1155Options>): boolean ``` Whether 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`. ### Examples Import the contract type(s) (for example, `erc20`) that you want to use from the `@openzeppelin/wizard-stylus` package: ```js import { erc20 } from '@openzeppelin/wizard-stylus'; ``` To generate the source code for an ERC20 contract with all of the default settings: ```js const contract = erc20.print(); ``` To generate the source code for an ERC20 contract with some custom settings: ```js const contract = erc20.print({ name: 'ExampleToken', flashmint: true, permit: false, }); ``` To generate the source code for an ERC20 contract with all of the defaults but is burnable: ```js const contract = erc20.print({ ...erc20.defaults, burnable: true, }); ```

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/OpenZeppelin/contracts-wizard'

If you have feedback or need assistance with the MCP directory API, please join our Discord server