We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
ethers-io
Learn more about funding links in repositories.
Report abuse
1 parent 7b7be0d commit 5c8d17aCopy full SHA for 5c8d17a
src.ts/providers/provider-etherscan.ts
@@ -17,6 +17,7 @@
17
* - Optimism Goerli Testnet (``optimism-goerli``)
18
* - Polygon (``matic``)
19
* - Polygon Mumbai Testnet (``matic-mumbai``)
20
+ * - Polygon Amoy Testnet (``matic-amoy``)
21
*
22
* @_subsection api/providers/thirdparty:Etherscan [providers-etherscan]
23
*/
@@ -176,6 +177,8 @@ export class EtherscanProvider extends AbstractProvider {
176
177
return "https:/\/api-testnet.bscscan.com";
178
case "matic":
179
return "https:/\/api.polygonscan.com";
180
+ case "matic-amoy":
181
+ return "https:/\/api-amoy.polygonscan.com";
182
case "matic-mumbai":
183
return "https:/\/api-testnet.polygonscan.com";
184
case "optimism":
0 commit comments