Skip to content

Commit

Permalink
fix: support only sepolia and OP sepolia
Browse files Browse the repository at this point in the history
  • Loading branch information
rin-st committed Oct 16, 2024
1 parent 1e93ce4 commit 7e291ee
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions packages/react-app/src/helpers/strings.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,5 @@
// Update after merge.
export const VALID_BLOCK_EXPLORER_HOSTS = [
"sepolia.etherscan.io",
"sepolia-optimism.etherscan.io",
"sepolia.arbiscan.io",
"amoy.polygonscan.com",
"sepolia.basescan.org",
];
export const VALID_BLOCK_EXPLORER_HOSTS = ["sepolia.etherscan.io", "sepolia-optimism.etherscan.io"];

export const ellipsizedAddress = longAddress =>
longAddress ? `${longAddress.slice(0, 6)}...${longAddress.slice(-4)}` : "";
Expand Down

0 comments on commit 7e291ee

Please sign in to comment.