Skip to content

Commit

Permalink
fix links (#673)
Browse files Browse the repository at this point in the history
  • Loading branch information
Solniechniy authored Aug 2, 2024
1 parent f80434d commit 14bab6a
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion explorer/src/constants/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { arbitrum, arbitrumNova, arbitrumSepolia, base, baseSepolia, linea } from "wagmi/chains";
import { arbitrum, arbitrumNova, arbitrumSepolia, base, baseSepolia, bsc, bscTestnet, linea } from "wagmi/chains";

import { lineaSepolia } from "@/config";

Expand Down Expand Up @@ -37,6 +37,12 @@ export const links: Record<number, { trx?: string; address: string }> = {
[baseSepolia.id]: {
address: "https://sepolia.basescan.org/address",
},
[bsc.id]: {
address: "https://bscscan.com/address",
},
[bscTestnet.id]: {
address: "https://testnet.bscscan.com/",
},
};

export const veraxLink = "https://ver.ax";

0 comments on commit 14bab6a

Please sign in to comment.