Skip to content

Commit

Permalink
fix: update broken links and correct typos in documentation (NomicFou…
Browse files Browse the repository at this point in the history
…ndation#6074)

* update broken link deploying-to-a-live-network.md

* typos errors.ts

* typos etherscan.ts

* update etherscan.ts
  • Loading branch information
Pricstas authored Dec 27, 2024
1 parent c34a43c commit a07f1f9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/src/content/tutorial/deploying-to-a-live-network.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ To deploy on Sepolia you need to send some Sepolia ether to the address that's g
- [Alchemy Sepolia Faucet](https://sepoliafaucet.com/)
- [Coinbase Sepolia Faucet](https://coinbase.com/faucets/ethereum-sepolia-faucet) (only works if you are using the Coinbase Wallet)
- [Infura Sepolia Faucet](https://www.infura.io/faucet/sepolia)
- [Chainstack Sepolia Faucet](https://faucet.chainstack.com/sepolia-faucet)
- [Chainstack Sepolia Faucet](https://faucet.chainstack.com/sepolia-testnet-faucet)
- [QuickNode Sepolia Faucet](https://faucet.quicknode.com/ethereum/sepolia)

You'll have to change your wallet's network to Sepolia before transacting.
Expand Down
4 changes: 2 additions & 2 deletions packages/hardhat-core/test/helpers/errors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export function expectHardhatError(
assert.notMatch(
error.message,
/%[a-zA-Z][a-zA-Z0-9]*%/,
"HardhatError has an non-replaced variable tag"
"HardhatError has a non-replaced variable tag"
);

if (typeof errorMessage === "string") {
Expand Down Expand Up @@ -113,7 +113,7 @@ export async function expectHardhatErrorAsync(
assert.notMatch(
err.message,
/%[a-zA-Z][a-zA-Z0-9]*%/,
"HardhatError has an non-replaced variable tag"
"HardhatError has a non-replaced variable tag"
);

if (errorMessage !== undefined) {
Expand Down
2 changes: 1 addition & 1 deletion packages/hardhat-verify/test/unit/etherscan.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ describe("Etherscan", () => {
assert.equal(currentChainConfig.chainId, 5);
});

it("should throw if the selected network is hardhat and it's not a added to custom chains", async () => {
it("should throw if the selected network is hardhat and it's not added to custom chains", async () => {
const networkName = "hardhat";
const ethereumProvider = {
async send() {
Expand Down

0 comments on commit a07f1f9

Please sign in to comment.