npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

hardhat-remix-analyzer

v0.0.3

Published

A plugin using remix analyzer for solidity syntax analysis.

Readme

npm npm (scoped)

hardhat-remix-analyzer

A plugin using remix analyzer for solidity syntax analysis.

What

This plugin can help solidity developers to find potential issues in their contracts code. It is using remix analyzer as the tool doing this job. So, ideally, it should show developers the same report as what they got when using Remix IDE.

Since it is remix analyzer doing the analyzation job, you can use all the rules it supports. You can find all here.

Installation

npm install hardhat-remix-analyzer @dteam/st2 @remix-project/remix-analyzer fast-levenshtein

Import the plugin in your hardhat.config.js:

require("hardhat-remix-analyzer");

Or if you are using TypeScript, in your hardhat.config.ts:

import "hardhat-remix-analyzer";

Required plugins

None.

Tasks

This plugin adds the analyze task to Hardhat:

  analyze               Analyze the contracts code

Environment extensions

This plugin extends the Hardhat Runtime Environment by adding an analyze function:

hre.analyze(hre);

Configuration

This plugin needs no configuration to run, in this case, it will apply all rules for all the contracts files.

To customize it, you can add analyzerRules to HardhatUserConfig in your hardhat project. The type of the configuration:

export type AnalyzerConfiguration = {
  default?: string[];
  sources?: {
    [source: string]: { [rule: string]: boolean };
  };
};

Where:

  • When it is an empty object like {}, then all rules will be applied.
  • default defines the rules for all contracts files. it is an array of strings. Each element must be one of the following names:
export const ANALYZER_RULES: { [rule: string]: any } = {
  txOrigin,
  gasCosts,
  thisLocal,
  checksEffectsInteraction,
  constantFunctions,
  similarVariableNames,
  inlineAssembly,
  blockTimestamp,
  lowLevelCalls,
  blockBlockhash,
  noReturn,
  selfdestruct,
  guardConditions,
  deleteDynamicArrays,
  assignAndCompare,
  erc20Decimals,
  stringBytesLength,
  intDivisionTruncate,
  etherTransferInLoop,
  deleteFromDynamicArray,
  forLoopIteratesOverDynamicArray,
};
  • sources can control two things and the key must be a path pointing to a contract file.
    • which rules in default will not be applied to a specific contract file.
    • which new rules will be added for a specific file.

An example of configuration:

const config: HardhatUserConfig = {
  ...,
  analyzerRules: {
    default: ["txOrigin", "gasCosts", "thisLocal"],
    sources: {
      "contracts/Global.sol": {
        gasCosts: false,
        thisLocal: false,
        blockTimestamp: true,
      },
    },
  },
};

Usage

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

npx hardhat analyze