From 147367f650e857a2d92dea7b109bde6f443a7bcb Mon Sep 17 00:00:00 2001 From: Elias Rad <146735585+nnsW3@users.noreply.github.com> Date: Fri, 23 Aug 2024 19:38:52 +0300 Subject: [PATCH] Docs: fix spelling issues (#242) --- README.md | 2 +- docs/advanced.md | 2 +- src/lib/render/json.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index e6efbbe..16df1be 100644 --- a/README.md +++ b/README.md @@ -139,7 +139,7 @@ npx hardhat hhgas:merge "gasReporterOutput-*.json" ## Supported Networks -API keys for the networks this plugin auto-configures via the `L1` and `L2` options are available from the links below. In many cases these aren't equired - you'll only need to set them if you start seeing rate-limit warnings. +API keys for the networks this plugin auto-configures via the `L1` and `L2` options are available from the links below. In many cases these aren't required - you'll only need to set them if you start seeing rate-limit warnings. :warning: **UPDATE:** Etherscan now requires api keys to fetch both L1 (Ethereum Mainnet) **and** L2 gas price data. (An example config [can be found here][2]) diff --git a/docs/advanced.md b/docs/advanced.md index c3827a9..c8c79f9 100644 --- a/docs/advanced.md +++ b/docs/advanced.md @@ -162,7 +162,7 @@ const config: HardhatUserConfig = { ## Proxy Resolvers -Some contract systems route calls through proxies (for upgradeability or other reasons) which means the reporter can't know which contract is the target of a transaction without additional help. The `proxyResolver` option lets you define a custom class to help resolve these unindentified method calls. +Some contract systems route calls through proxies (for upgradeability or other reasons) which means the reporter can't know which contract is the target of a transaction without additional help. The `proxyResolver` option lets you define a custom class to help resolve these unidentified method calls. There are two examples in the code base here to use as templates if you're writing your own: diff --git a/src/lib/render/json.ts b/src/lib/render/json.ts index cf394e5..782a0d4 100644 --- a/src/lib/render/json.ts +++ b/src/lib/render/json.ts @@ -3,7 +3,7 @@ import { GasData } from "../gasData"; import { GasReporterOptions, GasReporterOutput } from "../../types"; /** - * Writes acccumulated data and the current options to gasReporterOutput.json so it + * Writes accumulated data and the current options to gasReporterOutput.json so it * can be consumed by other tools (CI etc...) * @param {GasData} data * @param {GasReporterOptions} options