
Security News
Open Source CAI Framework Handles Pen Testing Tasks up to 3,600× Faster Than Humans
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
remix-analyzer
Advanced tools
remix-analyzer
is a tool to perform static analysis on Solidity smart contracts to check security vulnerabilities and bad development practices. It works underneath Remix IDE plugin "SOLIDITY STATIC ANALYSIS" which is used to run analysis for a compiled contract according to selected modules.
remix-analyzer
is an NPM package and can be installed using NPM as:
npm install remix-analyzer
remix-analyzer
exports below interface:
import { CompilationResult, AnalyzerModule, AnalysisReport } from 'types';
declare type ModuleObj = {
name: string;
mod: AnalyzerModule;
};
export default class staticAnalysisRunner {
/**
* Run analysis (Used by IDE)
* @param compilationResult contract compilation result
* @param toRun module indexes (compiled from remix IDE)
* @param callback callback
*/
run(compilationResult: CompilationResult, toRun: number[], callback: ((reports: AnalysisReport[]) => void)): void;
/**
* Run analysis passing list of modules to run
* @param compilationResult contract compilation result
* @param modules analysis module
* @param callback callback
*/
runWithModuleList(compilationResult: CompilationResult, modules: ModuleObj[], callback: ((reports: AnalysisReport[]) => void)): void;
/**
* Get list of all analysis modules
*/
modules(): any[];
}
One can import the module and use the available methods to run analysis. Related type descriptions can be seen here.
Details of modules are explained in official remix-ide documentation.
We are always open to new features or bug reports. Please feel free to open an issue or a pull request.
In case you want to add some code, do have a look to our contribution guidelnes here. Reach us in Gitter in case of any queries.
MIT © 2018-20 Remix Team
FAQs
Tool to perform static analysis on Solidity smart contracts
The npm package remix-analyzer receives a total of 9 weekly downloads. As such, remix-analyzer popularity was classified as not popular.
We found that remix-analyzer demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 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.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
Security News
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.