Skip to content
This repository was archived by the owner on Jan 4, 2024. It is now read-only.

Commit

Permalink
fix basescan url (#204)
Browse files Browse the repository at this point in the history
  • Loading branch information
d10r authored Aug 8, 2023
1 parent a3a04cd commit 829d160
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,7 @@ module.exports = {
bscscan: 'MY_API_KEY',
snowtrace: 'MY_API_KEY',
polygonscan: 'MY_API_KEY',
zkevm_polygonscan: 'MY_API_KEY',
ftmscan: 'MY_API_KEY',
hecoinfo: 'MY_API_KEY',
moonscan: 'MY_API_KEY',
Expand All @@ -159,7 +160,7 @@ module.exports = {
- [Arbiscan Nova](https://nova.arbiscan.io) (Arbitrum Nova)
- [BscScan](https://bscscan.com) (BSC Mainnet & Testnet)
- [Snowtrace](https://snowtrace.io/) (Avalanche Mainnet & Fuji Testnet)
- [PolygonScan](https://polygonscan.com) (Polygon PoS, zkEVM Mainnet & Mumbai, zkEVM Testnet)
- [PolygonScan](https://polygonscan.com) (Polygon PoS & Mumbai Testnet)
- [FtmScan](https://ftmscan.com) (Fantom Mainnet & Testnet)
- [HecoInfo](https://hecoinfo.com) (HECO Mainnet & Testnet)
- [Moonscan](https://moonscan.io/) (Moonbeam Mainnet & Moonbase Alpha Testnet)
Expand All @@ -171,6 +172,7 @@ module.exports = {
- [CLVScan](https://clvscan.com/) (CLV Mainnet)
- [Celoscan](https://celoscan.io/) (Celo Mainnet & Alfajores Testnet)
- [BaseScan](https://basescan.org/) (Base Mainnet & Testnet)
- [zkEVM PolygonScan](https://zkevm.polygonscan.com) (Polygon zkEVM Mainnet & Testnet)

### Usage with unsupported chains

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "truffle-plugin-verify",
"version": "0.6.4",
"version": "0.6.5",
"description": "Verify your deployed smart contracts on Etherscan from the Truffle CLI",
"repository": "https://github.com/rkalis/truffle-plugin-verify",
"main": "dist/verify.js",
Expand Down
6 changes: 3 additions & 3 deletions src/constants.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export const VERSION = '0.6.4';
export const VERSION = '0.6.5';

export const SUPPORTED_VERIFIERS = ['etherscan', 'sourcify'];

Expand Down Expand Up @@ -27,7 +27,7 @@ export const API_URLS: { [chainId: number]: string | undefined } = {
1287: 'https://api-moonbase.moonscan.io/api',
1442: 'https://api-testnet-zkevm.polygonscan.com/api',
4002: 'https://api-testnet.ftmscan.com/api',
8453: 'https://api.basescan.com/api',
8453: 'https://api.basescan.org/api',
42161: 'https://api.arbiscan.io/api',
42170: 'https://api-nova.arbiscan.io/api',
42220: 'https://api.celoscan.io/api',
Expand Down Expand Up @@ -66,7 +66,7 @@ export const EXPLORER_URLS: { [chainId: number]: string | undefined } = {
1287: 'https://moonbase.moonscan.io/address',
1442: 'https://testnet-zkevm.polygonscan.com/address',
4002: 'https://testnet.ftmscan.com/address',
8453: 'https://basescan.com/address',
8453: 'https://basescan.org/address',
42161: 'https://arbiscan.io/address',
42170: 'https://nova.arbiscan.io/address',
42220: 'https://celoscan.io/address',
Expand Down

0 comments on commit 829d160

Please sign in to comment.