@layerzerolabs/verify-contract 1.1.22 → 1.1.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.js +2 -2
- package/dist/index.js +43 -23
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +43 -23
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -44522,46 +44522,66 @@ var tryCreateScanContractUrl = (scanBrowserUrl, address) => {
|
|
|
44522
44522
|
};
|
|
44523
44523
|
var DEFAULT_SCAN_API_URLS = /* @__PURE__ */ new Map([
|
|
44524
44524
|
["amoy", "https://amoy.polygonscan.com/api"],
|
|
44525
|
+
["amoy-mainnet", "https://amoy.polygonscan.com/api"],
|
|
44526
|
+
["arbitrum", "https://api.arbiscan.io/api"],
|
|
44527
|
+
["arbitrum-goerli", "https://api-goerli.arbiscan.io/api"],
|
|
44528
|
+
["arbitrum-mainnet", "https://api.arbiscan.io/api"],
|
|
44525
44529
|
["avalanche", "https://api.snowtrace.io/api"],
|
|
44526
44530
|
["avalanche-mainnet", "https://api.snowtrace.io/api"],
|
|
44527
|
-
["fuji", "https://api-testnet.snowtrace.io/api"],
|
|
44528
44531
|
["avalanche-testnet", "https://api-testnet.snowtrace.io/api"],
|
|
44529
|
-
["
|
|
44530
|
-
["
|
|
44532
|
+
["base", "https://api.basescan.org/api"],
|
|
44533
|
+
["base-goerli", "https://api-goerli.basescan.org/api"],
|
|
44534
|
+
["base-mainnet", "https://api.basescan.org/api"],
|
|
44535
|
+
["blast", "https://api.blastscan.io/api"],
|
|
44536
|
+
["blast-mainnet", "https://api.blastscan.io/api"],
|
|
44531
44537
|
["bsc", "https://api.bscscan.com/api"],
|
|
44538
|
+
["bsc-mainnet", "https://api.bscscan.com/api"],
|
|
44532
44539
|
["bsc-testnet", "https://api-testnet.bscscan.com/api"],
|
|
44533
44540
|
["ethereum", "https://api.etherscan.io/api"],
|
|
44534
44541
|
["ethereum-goerli", "https://api-goerli.etherscan.io/api"],
|
|
44535
|
-
["
|
|
44542
|
+
["ethereum-mainnet", "https://api.etherscan.io/api"],
|
|
44543
|
+
["etherlink", "https://explorer.etherlink.com/api"],
|
|
44544
|
+
["etherlink-mainnet", "https://explorer.etherlink.com/api"],
|
|
44536
44545
|
["fantom", "https://api.ftmscan.com/api"],
|
|
44546
|
+
["fantom-mainnet", "https://api.ftmscan.com/api"],
|
|
44537
44547
|
["fantom-testnet", "https://api-testnet.ftmscan.com/api"],
|
|
44548
|
+
["fraxtal", "https://api.fraxscan.com/api"],
|
|
44549
|
+
["fraxtal-mainnet", "https://api.fraxscan.com/api"],
|
|
44550
|
+
["fuji", "https://api-testnet.snowtrace.io/api"],
|
|
44551
|
+
["fuji-mainnet", "https://api-testnet.snowtrace.io/api"],
|
|
44552
|
+
["gnosis", "https://api.gnosisscan.io/api"],
|
|
44553
|
+
["gnosis-mainnet", "https://api.gnosisscan.io/api"],
|
|
44554
|
+
["goerli", "https://api-goerli.etherscan.io/api"],
|
|
44555
|
+
["goerli-mainnet", "https://api-goerli.etherscan.io/api"],
|
|
44538
44556
|
["kava", "https://kavascan.com/api"],
|
|
44539
44557
|
["kava-mainnet", "https://kavascan.com/api"],
|
|
44540
44558
|
["kava-testnet", "https://testnet.kavascan.com/api"],
|
|
44541
|
-
["polygon", "https://api.polygonscan.com/api"],
|
|
44542
|
-
["optimism", "https://api-optimistic.etherscan.io/api"],
|
|
44543
|
-
["optimism-goerli", "https://api-goerli-optimistic.etherscan.io/api"],
|
|
44544
|
-
["gnosis", "https://api.gnosisscan.io/api"],
|
|
44545
|
-
["zkpolygon", "https://api-zkevm.polygonscan.com/api"],
|
|
44546
|
-
["zkpolygon-mainnet", "https://api-zkevm.polygonscan.com/api"],
|
|
44547
|
-
["base", "https://api.basescan.org/api"],
|
|
44548
|
-
["base-mainnet", "https://api.basescan.org/api"],
|
|
44549
|
-
["base-goerli", "https://api-goerli.basescan.org/api"],
|
|
44550
44559
|
["linea", "https://api.lineascan.build/api"],
|
|
44551
44560
|
["linea-mainnet", "https://api.lineascan.build/api"],
|
|
44552
|
-
["zkconsensys", "https://api.lineascan.build/api"],
|
|
44553
|
-
["zkconsensys-mainnet", "https://api.lineascan.build/api"],
|
|
44554
|
-
["moonbeam", "https://api-moonbeam.moonscan.io/api"],
|
|
44555
|
-
["moonbeam-testnet", "https://api-moonbase.moonscan.io/api"],
|
|
44556
44561
|
["mantle", "https://explorer.mantle.xyz/api"],
|
|
44562
|
+
["mantle-mainnet", "https://explorer.mantle.xyz/api"],
|
|
44563
|
+
["manta", "https://pacific-explorer.manta.network/api"],
|
|
44564
|
+
["manta-mainnet", "https://pacific-explorer.manta.network/api"],
|
|
44557
44565
|
["metis", "https://api.routescan.io/v2/network/mainnet/evm/1088/etherscan"],
|
|
44558
|
-
["
|
|
44559
|
-
["fraxtal", "https://api.fraxscan.com/api"],
|
|
44566
|
+
["metis-mainnet", "https://api.routescan.io/v2/network/mainnet/evm/1088/etherscan"],
|
|
44560
44567
|
["mode", "https://explorer.mode.network/api"],
|
|
44561
|
-
["
|
|
44562
|
-
["
|
|
44563
|
-
["
|
|
44564
|
-
["
|
|
44568
|
+
["mode-mainnet", "https://explorer.mode.network/api"],
|
|
44569
|
+
["moonbeam", "https://api-moonbeam.moonscan.io/api"],
|
|
44570
|
+
["moonbeam-mainnet", "https://api-moonbeam.moonscan.io/api"],
|
|
44571
|
+
["moonbeam-testnet", "https://api-moonbase.moonscan.io/api"],
|
|
44572
|
+
["optimism", "https://api-optimistic.etherscan.io/api"],
|
|
44573
|
+
["optimism-goerli", "https://api-goerli-optimistic.etherscan.io/api"],
|
|
44574
|
+
["optimism-mainnet", "https://api-optimistic.etherscan.io/api"],
|
|
44575
|
+
["polygon", "https://api.polygonscan.com/api"],
|
|
44576
|
+
["polygon-mainnet", "https://api.polygonscan.com/api"],
|
|
44577
|
+
["scroll", "https://api.scrollscan.com/api"],
|
|
44578
|
+
["scroll-mainnet", "https://api.scrollscan.com/api"],
|
|
44579
|
+
["xlayer", "https://www.oklink.com/api/v5/explorer/contract/verify-source-code-plugin/XLAYER"],
|
|
44580
|
+
["xlayer-mainnet", "https://www.oklink.com/api/v5/explorer/contract/verify-source-code-plugin/XLAYER"],
|
|
44581
|
+
["zkconsensys", "https://api.lineascan.build/api"],
|
|
44582
|
+
["zkconsensys-mainnet", "https://api.lineascan.build/api"],
|
|
44583
|
+
["zkpolygon", "https://api-zkevm.polygonscan.com/api"],
|
|
44584
|
+
["zkpolygon-mainnet", "https://api-zkevm.polygonscan.com/api"]
|
|
44565
44585
|
]);
|
|
44566
44586
|
|
|
44567
44587
|
// src/common/logger.ts
|