From 415efbfb0474298458a7f73b5b4959ecf93c3f30 Mon Sep 17 00:00:00 2001 From: Richard Moore Date: Thu, 2 Feb 2023 04:21:12 -0500 Subject: [PATCH] docs: merged old Etherscan docs --- src.ts/providers/provider-etherscan.ts | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/src.ts/providers/provider-etherscan.ts b/src.ts/providers/provider-etherscan.ts index a91311024..99cfa1a4e 100644 --- a/src.ts/providers/provider-etherscan.ts +++ b/src.ts/providers/provider-etherscan.ts @@ -1,3 +1,23 @@ +/** + * [[link-etherscan]] provides a third-party service for connecting to + * various blockchains over a combination of JSON-RPC and custom API + * endpoints. + * + * **Supported Networks** + * + * - Ethereum Mainnet (``mainnet``) + * - Goerli Testnet (``goerli``) + * - Sepolia Testnet (``sepolia``) + * - Arbitrum (``arbitrum``) + * - Arbitrum Goerli Testnet (``arbitrum-goerli``) + * - Optimism (``optimism``) + * - Optimism Goerli Testnet (``optimism-goerli``) + * - Polygon (``matic``) + * - Polygon Mumbai Testnet (``maticmum``) + * + * @_subsection api/providers/thirdparty:Etherscan [providers-etherscan] + */ + import { AbiCoder } from "../abi/index.js"; import { Contract } from "../contract/index.js"; import { accessListify, Transaction } from "../transaction/index.js";