Socket
Socket
Sign inDemoInstall

@nomiclabs/hardhat-solpp

Package Overview
Dependencies
284
Maintainers
4
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @nomiclabs/hardhat-solpp

Hardhat plugin for solpp


Version published
Weekly downloads
806
decreased by-89.09%
Maintainers
4
Install size
11.0 MB
Created
Weekly downloads
 

Readme

Source

npm hardhat

hardhat-solpp

Hardhat plugin for integration with the solpp preprocessor.

What

This plugin hooks into the compilation pipeline and runs the solpp preprocessor.

Installation

npm install --save-dev @nomiclabs/hardhat-solpp

And add the following statement to your hardhat.config.js:

require("@nomiclabs/hardhat-solpp");

Or, if you are using TypeScript, add this to your hardhat.config.ts:

import "@nomiclabs/hardhat-solpp";

Environment extensions

This plugin does not extend the environment.

Usage

There are no additional steps you need to take for this plugin to work.

Install it, run npx hardhat compile and solc will compile the solpp generated contracts, which will be in cache/solpp-generated-contracts.

Configuration

This plugin can by configured by setting a solpp entry in hardhat.config.js. Its options are:

  • defs: is an object where each property is the symbol's name and its value is the actual definition. Definitions can be numbers, string, expressions, lists, or functions. For more detail about symbols you can check solpp README.
  • cwd: string: directory where the contracts are located, it will be used for flattening purposes, by default it will be the project's source directory.
  • collapseEmptyLines: boolean: delete empty lines, false by default.
  • noPreprocessor: boolean: disable preprocessor, false by default.
  • noFlatten: boolean: won't flatten contracts, true by default.
  • tolerant: boolean: ignore if an imported contract file is missing when flattening, false by default.

Keywords

FAQs

Last updated on 01 Mar 2022

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc