diff --git a/packages/frontend/src/components/Positions/ConnectWallet.tsx b/packages/frontend/src/components/Positions/ConnectWallet.tsx
deleted file mode 100644
index 2b14e0f6b7..0000000000
--- a/packages/frontend/src/components/Positions/ConnectWallet.tsx
+++ /dev/null
@@ -1,29 +0,0 @@
-import { Typography } from '@material-ui/core'
-import { useAtomValue } from 'jotai'
-
-import { supportedNetworkAtom } from '@state/wallet/atoms'
-import { useSelectWallet } from '@state/wallet/hooks'
-import { LinkButton } from '@components/Button'
-import useStyles from './useStyles'
-
-const ConnectWallet: React.FC = () => {
- const selectWallet = useSelectWallet()
- const classes = useStyles()
- const supportedNetwork = useAtomValue(supportedNetworkAtom)
-
- return (
-
-
- {supportedNetwork ? (
-
- Connect Wallet
-
- ) : (
- Unsupported Network
- )}
-
-
- )
-}
-
-export default ConnectWallet
diff --git a/packages/frontend/src/components/Positions/HeaderBar.tsx b/packages/frontend/src/components/Positions/HeaderBar.tsx
new file mode 100644
index 0000000000..f9991c6b71
--- /dev/null
+++ b/packages/frontend/src/components/Positions/HeaderBar.tsx
@@ -0,0 +1,130 @@
+import { Tooltip, Typography } from '@material-ui/core'
+import InfoIcon from '@material-ui/icons/InfoOutlined'
+import { makeStyles, createStyles } from '@material-ui/core/styles'
+import { useAtomValue } from 'jotai'
+import { useMemo } from 'react'
+
+import { supportedNetworkAtom, networkIdAtom, connectedWalletAtom, addressAtom } from '@state/wallet/atoms'
+import { useSelectWallet } from '@state/wallet/hooks'
+import { LinkButton } from '@components/Button'
+import SqueethCard from '@components/SqueethCard'
+import { Tooltips } from '@constants/index'
+import { toTokenAmount } from '@utils/calculations'
+import { indexAtom } from '@state/controller/atoms'
+import { formatCurrency } from '@utils/formatter'
+import { useENS } from '@hooks/useENS'
+import { getNetwork } from '@utils/network'
+import useCommonStyles from './useStyles'
+
+const useStyles = makeStyles((theme) =>
+ createStyles({
+ container: {
+ display: 'flex',
+ justifyContent: 'space-between',
+ alignItems: 'center',
+ width: '100%',
+ },
+ userInfoContainer: {
+ display: 'flex',
+ alignItems: 'center',
+ gridGap: '6px',
+ },
+ ethPriceContainer: {
+ display: 'flex',
+ alignItems: 'center',
+ },
+ textMedium: {
+ fontWeight: 500,
+ },
+ profileImageCircle: {
+ width: theme.spacing(1.5),
+ height: theme.spacing(1.5),
+ borderRadius: '50%',
+ marginRight: theme.spacing(0.5),
+ backgroundColor: theme.palette.primary.main,
+ },
+ ctaButton: {
+ fontSize: '16px',
+ },
+ networkText: {
+ textTransform: 'capitalize',
+ },
+ }),
+)
+
+const UserInfo = () => {
+ const networkId = useAtomValue(networkIdAtom)
+ const address = useAtomValue(addressAtom)
+ const isNetworkSupported = useAtomValue(supportedNetworkAtom)
+
+ const { ensName } = useENS(address)
+
+ const shortAddress = useMemo(
+ () => (address ? address.slice(0, 6) + '...' + address.slice(address.length - 4, address.length) : ''),
+ [address],
+ )
+
+ const classes = useStyles()
+
+ return (
+
+
+
+ {ensName || shortAddress}
+ {': '}
+
+
+ {getNetwork(networkId).toLowerCase()} {!isNetworkSupported && '(Unsupported)'}
+
+
+ )
+}
+
+const EthPrice = () => {
+ const index = useAtomValue(indexAtom)
+ const ethPrice = toTokenAmount(index, 18).sqrt()
+
+ const classes = useStyles()
+ const commonClasses = useCommonStyles()
+
+ return (
+
+
+ ETH Price:
+
+
+
+
+ {formatCurrency(ethPrice.toNumber())}
+
+
+
+
+
+
+ )
+}
+
+const HeaderBar: React.FC = () => {
+ const isWalletConnected = useAtomValue(connectedWalletAtom)
+
+ const selectWallet = useSelectWallet()
+ const classes = useStyles()
+
+ return (
+
+
+ {isWalletConnected ? (
+
+ ) : (
+
+ Connect Wallet
+
+ )}
+
+
+
+ )
+}
+
+export default HeaderBar
diff --git a/packages/frontend/src/utils/network.ts b/packages/frontend/src/utils/network.ts
new file mode 100644
index 0000000000..e9790d5725
--- /dev/null
+++ b/packages/frontend/src/utils/network.ts
@@ -0,0 +1,12 @@
+export function getNetwork(networkId: number) {
+ switch (networkId) {
+ case 1:
+ return 'MAINNET'
+ case 5:
+ return 'GOERI'
+ case 11155111:
+ return 'SEPOLIA'
+ default:
+ return 'UNKNOWN'
+ }
+}