From 2a9f4473adc5bcdddf388389387ed5459583769e Mon Sep 17 00:00:00 2001 From: Peter Mazzocco <100664895+petermazzocco@users.noreply.github.com> Date: Tue, 20 Feb 2024 19:48:27 -0800 Subject: [PATCH] Adding Holesky testnet to Etherscan plugin for wagmi CLI (#3616) --- .changeset/slimy-toys-retire.md | 5 +++++ packages/cli/src/plugins/etherscan.ts | 1 + 2 files changed, 6 insertions(+) create mode 100644 .changeset/slimy-toys-retire.md diff --git a/.changeset/slimy-toys-retire.md b/.changeset/slimy-toys-retire.md new file mode 100644 index 0000000000..177eb2da21 --- /dev/null +++ b/.changeset/slimy-toys-retire.md @@ -0,0 +1,5 @@ +--- +"@wagmi/cli": patch +--- + +Added Holesky Testnet to Etherscan Plugin diff --git a/packages/cli/src/plugins/etherscan.ts b/packages/cli/src/plugins/etherscan.ts index 155c53cfac..7539f7d52b 100644 --- a/packages/cli/src/plugins/etherscan.ts +++ b/packages/cli/src/plugins/etherscan.ts @@ -6,6 +6,7 @@ const apiUrls = { // Ethereum [1]: 'https://api.etherscan.io/api', [5]: 'https://api-goerli.etherscan.io/api', + [17000]: 'https://api-holesky.etherscan.io/api', [11155111]: 'https://api-sepolia.etherscan.io/api', // Optimism [10]: 'https://api-optimistic.etherscan.io/api',