
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
@openzeppelin/wizard-stylus
Advanced tools
A boilerplate generator to get started with OpenZeppelin Contracts 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
npm install @openzeppelin/wizard-stylus
The following contract types are supported:
erc20
erc721
erc1155
Each contract type has functions/constants as defined below.
print
function print(opts?: ERC20Options): string
function print(opts?: ERC721Options): string
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
const defaults: Required<ERC20Options>
const defaults: Required<ERC721Options>
const defaults: Required<ERC1155Options>
The default options that are used for print
.
isAccessControlRequired
function isAccessControlRequired(opts: Partial<ERC20Options>): boolean
function isAccessControlRequired(opts: Partial<ERC721Options>): boolean
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
.
Import the contract type(s) (for example, erc20
) that you want to use from the @openzeppelin/wizard-stylus
package:
import { erc20 } from '@openzeppelin/wizard-stylus';
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 some custom settings:
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:
const contract = erc20.print({
...erc20.defaults,
burnable: true,
});
FAQs
A boilerplate generator to get started with OpenZeppelin Contracts for Stylus
We found that @openzeppelin/wizard-stylus demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 13 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.