
Research
/Security News
9 Malicious NuGet Packages Deliver Time-Delayed Destructive Payloads
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.
@arianee/contracts-wizard
Advanced tools
A boilerplate generator to get started with Arianee Contracts
Interactively build a contract out of components from Arianee 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.arianee.com
npm install @arianee/contracts-wizard
The following contract types are supported:
smartAsseterc20erc721erc1155governorcustomEach contract type has functions/constants as defined below.
printfunction print(opts?: SmartAssetOptions): string
function print(opts?: ERC20Options): string
function print(opts?: ERC721Options): string
function print(opts?: ERC1155Options): string
function print(opts?: GovernorOptions): string
function print(opts?: CustomOptions): string
Returns a string representation of a contract generated using the provided options. If opts is not provided, uses defaults.
defaultsconst defaults: Required<SmartAssetOptions>
const defaults: Required<ERC20Options>
const defaults: Required<ERC721Options>
const defaults: Required<ERC1155Options>
const defaults: Required<GovernorOptions>
const defaults: Required<CustomOptions>
The default options that are used for print.
isAccessControlRequiredfunction isAccessControlRequired(opts: Partial<ERC20Options>): boolean
function isAccessControlRequired(opts: Partial<ERC721Options>): boolean
function isAccessControlRequired(opts: Partial<ERC1155Options>): boolean
function isAccessControlRequired(opts: Partial<GovernorOptions>): boolean
function isAccessControlRequired(opts: Partial<CustomOptions>): 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) that you want to use from the @arianee/contracts-wizard package:
import { smartAsset } from '@arianee/contracts-wizard';
To generate the source code for a SmartAsset contract with all of the default settings:
const contract = smartAsset.print();
To generate the source code for an SmartAsset contract with a custom name and symbol, along with some custom settings:
const contract = smartAsset.print({
name: 'MySmartAsset',
symbol: 'MSA',
updatable: true,
burnable: true,
});
This package is a fork of OpenZeppelin Contracts Wizard for Solidity.
FAQs
A boilerplate generator to get started with Arianee Contracts
We found that @arianee/contracts-wizard demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 9 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
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.