Metadata-Version: 2.1
Name: hardhat-gas-report-diff
Version: 0.1.0
Summary: Hardhat Gas Report Diff
Home-page: https://github.com/guidanoli/hardhat-gas-report-diff
Author: Guilherme Dantas
Author-email: guidanoli@hotmail.com
License: GNU General Public License v3.0
Project-URL: Bug Tracker, https://github.com/guidanoli/hardhat-gas-report-diff/issues
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Text Processing
Classifier: Topic :: Utilities
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE

# HardHat Gas Report Diff

A Python package that processes reports generated by [hardhat-gas-reporter](https://github.com/cgewecke/hardhat-gas-reporter) and generates a Markdown table comparing the two.

## Usage

1. Have `hardhat-gas-reporter` installed in your environment
2. Run `hardhat test` and save the report in a file called `before.txt`
3. Make any changes to the source code you're testing
4. Run `hardhat test` again and save the new report in a file called `after.txt`
5. Run `python -m hhgrdiff before.txt after.txt`
6. It should output a Markdown table comparing the two reports

## Help

Run `python -m hhgrdiff --help`
