diff --git a/explorer-nextjs/src/components/header/MobileHeader.tsx b/explorer-nextjs/src/components/header/MobileHeader.tsx
index 662dede066..593a10dc0e 100644
--- a/explorer-nextjs/src/components/header/MobileHeader.tsx
+++ b/explorer-nextjs/src/components/header/MobileHeader.tsx
@@ -135,7 +135,6 @@ const MobileMenuHeader = ({
>
-
+
);
};
diff --git a/explorer-nextjs/src/components/wallet/ConnectWallet.tsx b/explorer-nextjs/src/components/wallet/ConnectWallet.tsx
index 40596bfe55..a7c18ee472 100644
--- a/explorer-nextjs/src/components/wallet/ConnectWallet.tsx
+++ b/explorer-nextjs/src/components/wallet/ConnectWallet.tsx
@@ -2,7 +2,13 @@
import { COSMOS_KIT_USE_CHAIN } from "@/config";
import { useChain } from "@cosmos-kit/react";
-import { Button, type ButtonProps, IconButton, Stack } from "@mui/material";
+import {
+ Box,
+ Button,
+ type ButtonProps,
+ IconButton,
+ Typography,
+} from "@mui/material";
import Cross from "../icons/Cross";
import { WalletAddress } from "./WalletAddress";
import { WalletBalance } from "./WalletBalance";
@@ -27,18 +33,36 @@ const ConnectWallet = ({ ...buttonProps }: ButtonPropsWithOnClick) => {
if (isWalletConnected && !buttonProps.hideAddressAndBalance) {
return (
-
+
- {
- await handleDisconnectWallet();
- }}
- >
-
-
-
+
+ {
+ await handleDisconnectWallet();
+ }}
+ >
+
+
+ Disconnect
+
+
+
+
+
+
);
}
diff --git a/explorer-nextjs/src/config/index.ts b/explorer-nextjs/src/config/index.ts
index f38215abcf..6ee864de33 100644
--- a/explorer-nextjs/src/config/index.ts
+++ b/explorer-nextjs/src/config/index.ts
@@ -1,5 +1,5 @@
export const COSMOS_KIT_USE_CHAIN =
- process.env.NEXT_PUBLIC_COSMOS_KIT_USE_CHAIN || "sandbox";
+ process.env.NEXT_PUBLIC_COSMOS_KIT_USE_CHAIN || "nyx";
export const NYM_MIXNET_CONTRACT =
process.env.NYM_MIXNET_CONTRACT ||