Skip to content

Commit ee0380f

Browse files
authored
Add blastscan (#95)
1 parent b6d75d9 commit ee0380f

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

packages/ethereum-viewer/src/explorer/networks.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ export const explorerApiUrls = {
2626
gnosisscan: "https://api.gnosisscan.io/api",
2727
fraxscan: "https://api.fraxscan.com/api",
2828
"holesky.fraxscan": "https://api-holesky.fraxscan.com/api",
29+
blastscan: "https://api.blastscan.io/api",
30+
"sepolia.blastscan": "https://api-sepolia.blastscan.io/api",
2931
};
3032

3133
/**
@@ -60,6 +62,8 @@ export const networkNames: Record<ApiName, string> = {
6062
gnosisscan: "gnosisscan",
6163
fraxscan: "frax",
6264
"holesky.fraxscan": "fraxHolesky",
65+
blastscan: "blast",
66+
"sepolia.blastscan": "blastSepolia",
6367
};
6468

6569
const ETHERSCAN_KEY = "862Y3WJ4JB4B34PZQRFEV3IK6SZ8GNR9N5";
@@ -74,6 +78,7 @@ const CRONOSCAN_KEY = "BGAN1CWT8E1A2XRS3FU61UP7XXFMHBWNSY";
7478
const BASESCAN_KEY = "ICQQDUA1C8R2EZY6M4QIIV7WUEZM8INNA7";
7579
const GNOSISSCAN_KEY = "7PWN1FIPXW6WDSGH3PIHRW1EEU4A882QSQ";
7680
const FRAXSCAN_KEY = "TEUJWRCAKIXQCUR7XZRKCFRH3QHH344PAM";
81+
const BLASTSCAN_KEY = "G6DR1ZFYP54GG49SJ9GID37SFQPV96H77E";
7782

7883
// @todo this should be possible to override using VSCode settings
7984
export const explorerApiKeys: Record<ApiName, string> = {
@@ -111,4 +116,7 @@ export const explorerApiKeys: Record<ApiName, string> = {
111116

112117
fraxscan: FRAXSCAN_KEY,
113118
"holesky.fraxscan": FRAXSCAN_KEY,
119+
120+
blastscan: BLASTSCAN_KEY,
121+
"sepolia.blastscan": BLASTSCAN_KEY,
114122
};

0 commit comments

Comments
 (0)