diff --git a/README.md b/README.md
index 9c850bf3428..a5e9dd48cf5 100644
--- a/README.md
+++ b/README.md
@@ -10,13 +10,11 @@
An open source interface for Uniswap -- a protocol for decentralized exchange of Ethereum tokens.
-- Website: [uniswap.org](https://uniswap.org/)
-- Interface: [app.uniswap.org](https://app.uniswap.org)
+- Website: [dark.florist](https://www.dark.florist/)
- Docs: [uniswap.org/docs/](https://docs.uniswap.org/)
-- Twitter: [@Uniswap](https://twitter.com/Uniswap)
-- Reddit: [/r/Uniswap](https://www.reddit.com/r/Uniswap/)
+- Twitter: [@DarkFlorist](https://twitter.com/DarkFlorist)
- Email: [contact@uniswap.org](mailto:contact@uniswap.org)
-- Discord: [Uniswap](https://discord.gg/FCfyBSbCU5)
+- Discord: [Dark Florists](https://discord.com/invite/aCSKcvf5VW)
- Whitepapers:
- [V1](https://hackmd.io/C-DvwDSfSxuh-Gd4WKE_ig)
- [V2](https://uniswap.org/whitepaper.pdf)
diff --git a/src/components/About/AboutFooter.tsx b/src/components/About/AboutFooter.tsx
index d7277600637..cf4961f0b04 100644
--- a/src/components/About/AboutFooter.tsx
+++ b/src/components/About/AboutFooter.tsx
@@ -118,10 +118,10 @@ const LogoSectionContent = () => {
-
+
-
+
diff --git a/src/components/AccountDrawer/DownloadButton.tsx b/src/components/AccountDrawer/DownloadButton.tsx
deleted file mode 100644
index d833ffff717..00000000000
--- a/src/components/AccountDrawer/DownloadButton.tsx
+++ /dev/null
@@ -1,46 +0,0 @@
-import { PropsWithChildren, useCallback } from 'react'
-import styled from 'styled-components'
-import { ClickableStyle } from 'theme/components'
-import { openDownloadApp } from 'utils/openDownloadApp'
-
-const StyledButton = styled.button<{ padded?: boolean; branded?: boolean }>`
- ${ClickableStyle}
- width: 100%;
- display: flex;
- justify-content: center;
- flex-direction: row;
- gap: 6px;
- padding: 8px 24px;
- border: none;
- white-space: nowrap;
- background: ${({ theme, branded }) => (branded ? theme.accent1 : theme.surface3)};
- border-radius: 12px;
-
- font-weight: 535;
- font-size: 14px;
- line-height: 16px;
- color: ${({ theme, branded }) => (branded ? theme.deprecated_accentTextLightPrimary : theme.neutral1)};
-`
-
-function BaseButton({ onClick, branded, children }: PropsWithChildren<{ onClick?: () => void; branded?: boolean }>) {
- return (
-
- {children}
-
- )
-}
-
-// Launches App Store if on an iOS device, else navigates to Uniswap Wallet microsite
-export function DownloadButton({ onClick, text = 'Download' }: { onClick?: () => void; text?: string }) {
- const onButtonClick = useCallback(() => {
- // handles any actions required by the parent, i.e. cancelling wallet connection attempt or dismissing an ad
- onClick?.()
- openDownloadApp()
- }, [onClick])
-
- return (
-
- {text}
-
- )
-}
diff --git a/src/components/AccountDrawer/UniwalletModal.tsx b/src/components/AccountDrawer/UniwalletModal.tsx
deleted file mode 100644
index f7165a7c8b8..00000000000
--- a/src/components/AccountDrawer/UniwalletModal.tsx
+++ /dev/null
@@ -1,116 +0,0 @@
-import { Trans } from '@lingui/macro'
-import { WalletConnect as WalletConnectv2 } from '@web3-react/walletconnect-v2'
-import Column, { AutoColumn } from 'components/Column'
-import Modal from 'components/Modal'
-import { RowBetween } from 'components/Row'
-import { uniwalletWCV2ConnectConnection } from 'connection'
-import { ActivationStatus, useActivationState } from 'connection/activate'
-import { ConnectionType } from 'connection/types'
-import { UniwalletConnect as UniwalletConnectV2 } from 'connection/WalletConnectV2'
-import { QRCodeSVG } from 'qrcode.react'
-import { useEffect, useState } from 'react'
-import styled, { useTheme } from 'styled-components'
-import { CloseIcon, ThemedText } from 'theme/components'
-import { isIOS } from 'utils/userAgent'
-
-import uniPng from '../../assets/images/uniwallet_modal_icon.png'
-import { DownloadButton } from './DownloadButton'
-
-const UniwalletConnectWrapper = styled(RowBetween)`
- display: flex;
- flex-direction: column;
- padding: 20px 16px 16px;
-`
-const HeaderRow = styled(RowBetween)`
- display: flex;
-`
-const QRCodeWrapper = styled(RowBetween)`
- aspect-ratio: 1;
- border-radius: 12px;
- background-color: ${({ theme }) => theme.white};
- margin: 24px 32px 20px;
- padding: 10px;
-`
-const Divider = styled.div`
- border-bottom: 1px solid ${({ theme }) => theme.surface3};
- width: 100%;
-`
-
-export default function UniwalletModal() {
- const { activationState, cancelActivation } = useActivationState()
- const [uri, setUri] = useState()
-
- // Displays the modal if not on iOS, a Uniswap Wallet Connection is pending, & qrcode URI is available
- const open =
- !isIOS &&
- activationState.status === ActivationStatus.PENDING &&
- activationState.connection.type === ConnectionType.UNISWAP_WALLET_V2 &&
- !!uri
-
- useEffect(() => {
- const connectorV2 = uniwalletWCV2ConnectConnection.connector as WalletConnectv2
- connectorV2.events.addListener(UniwalletConnectV2.UNI_URI_AVAILABLE, (uri: string) => {
- uri && setUri(uri)
- })
- }, [])
-
- const theme = useTheme()
- return (
-
-
-
-
- Scan with Uniswap Wallet
-
-
-
-
- {uri && (
-
- )}
-
-
-
-
-
- )
-}
-
-const InfoSectionWrapper = styled(RowBetween)`
- display: flex;
- flex-direction: row;
- padding-top: 20px;
- gap: 20px;
-`
-
-function InfoSection() {
- return (
-
-
-
- Don't have Uniswap Wallet?
-
-
-
- Download in the App Store to safely store your tokens and NFTs, swap tokens, and connect to crypto apps.
-
-
-
-
-
-
-
- )
-}
diff --git a/src/components/Banner/BaseAnnouncementBanner/index.tsx b/src/components/Banner/BaseAnnouncementBanner/index.tsx
deleted file mode 100644
index 98d231be33f..00000000000
--- a/src/components/Banner/BaseAnnouncementBanner/index.tsx
+++ /dev/null
@@ -1,90 +0,0 @@
-import { Trans } from '@lingui/macro'
-import { ChainId } from '@uniswap/sdk-core'
-import { useWeb3React } from '@web3-react/core'
-import { ReactComponent as AppleLogo } from 'assets/svg/apple_logo.svg'
-import baseLogoUrl from 'assets/svg/base_background_icon.svg'
-import { useScreenSize } from 'hooks/useScreenSize'
-import { useLocation } from 'react-router-dom'
-import { useHideBaseWalletBanner } from 'state/user/hooks'
-import { ThemedText } from 'theme/components'
-import { openDownloadApp, openWalletMicrosite } from 'utils/openDownloadApp'
-import { isIOS, isMobileSafari } from 'utils/userAgent'
-
-import { BannerButton, BaseBackgroundImage, ButtonRow, PopupContainer, StyledXButton } from './styled'
-
-export default function BaseWalletBanner() {
- const { chainId } = useWeb3React()
- const [hideBaseWalletBanner, toggleHideBaseWalletBanner] = useHideBaseWalletBanner()
- const location = useLocation()
- const isLandingScreen = location.search === '?intro=true' || location.pathname === '/'
-
- const shouldDisplay = Boolean(!hideBaseWalletBanner && !isLandingScreen && chainId === ChainId.BASE)
-
- const screenSize = useScreenSize()
-
- if (isMobileSafari) return null
-
- return (
-
- {
- // prevent click from bubbling to UI on the page underneath, i.e. clicking a token row
- e.preventDefault()
- e.stopPropagation()
- toggleHideBaseWalletBanner()
- }}
- />
-
-
-
-
-
- Swap on{' '}
- {' '}
- BASE in the Uniswap wallet
-
-
-
-
- {isIOS ? (
- <>
-
- openDownloadApp({
- appStoreParams: 'pt=123625782&ct=base-app-banner&mt=8',
- })
- }
- >
-
-
- {!screenSize['xs'] ? Download : Download app}
-
-
-
- openWalletMicrosite()}>
-
- Learn more
-
-
- >
- ) : (
- openWalletMicrosite()}>
-
- Learn more
-
-
- )}
-
-
- )
-}
diff --git a/src/components/Banner/BaseAnnouncementBanner/styled.tsx b/src/components/Banner/BaseAnnouncementBanner/styled.tsx
deleted file mode 100644
index b96cf72bedd..00000000000
--- a/src/components/Banner/BaseAnnouncementBanner/styled.tsx
+++ /dev/null
@@ -1,84 +0,0 @@
-import walletBannerPhoneImageSrc from 'assets/images/wallet_banner_phone_image.png'
-import { BaseButton } from 'components/Button'
-import { OpacityHoverState } from 'components/Common'
-import Row from 'components/Row'
-import { X } from 'react-feather'
-import styled from 'styled-components'
-import { Z_INDEX } from 'theme/zIndex'
-
-export const PopupContainer = styled.div<{ show: boolean }>`
- display: flex;
- flex-direction: column;
- justify-content: space-between;
-
- ${({ show }) => !show && 'display: none'};
-
- background: url(${walletBannerPhoneImageSrc});
- background-repeat: no-repeat;
- background-position: top 18px right 15px;
- background-size: 166px;
-
- :hover {
- background-size: 170px;
- }
- transition: background-size ${({ theme }) => theme.transition.duration.medium}
- ${({ theme }) => theme.transition.timing.inOut};
-
- background-color: ${({ theme }) => theme.chain_84531};
- color: ${({ theme }) => theme.neutral1};
- position: fixed;
- z-index: ${Z_INDEX.sticky};
-
- padding: 24px 16px 16px;
-
- border-radius: 20px;
- bottom: 20px;
- right: 20px;
- width: 390px;
- height: 164px;
-
- border: 1px solid ${({ theme }) => theme.surface3};
-
- box-shadow: ${({ theme }) => theme.deprecated_deepShadow};
-
- @media only screen and (max-width: ${({ theme }) => `${theme.breakpoint.md}px`}) {
- bottom: 62px;
- }
-
- @media only screen and (max-width: ${({ theme }) => `${theme.breakpoint.sm}px`}) {
- background-position: top 32px right -10px;
- width: unset;
- right: 10px;
- left: 10px;
- height: 144px;
- }
-
- user-select: none;
-`
-
-export const BaseBackgroundImage = styled.img`
- position: absolute;
- top: 0;
- left: 0;
- height: 138px;
- width: 138px;
-`
-export const ButtonRow = styled(Row)`
- gap: 16px;
-`
-export const StyledXButton = styled(X)`
- cursor: pointer;
- position: absolute;
- top: 21px;
- right: 17px;
-
- color: ${({ theme }) => theme.white};
- ${OpacityHoverState};
-`
-
-export const BannerButton = styled(BaseButton)`
- height: 40px;
- border-radius: 16px;
- padding: 10px;
- ${OpacityHoverState};
-`
diff --git a/src/components/Logo/AppleLogo.tsx b/src/components/Logo/AppleLogo.tsx
deleted file mode 100644
index 18316bbe8c4..00000000000
--- a/src/components/Logo/AppleLogo.tsx
+++ /dev/null
@@ -1,8 +0,0 @@
-export const AppleLogo = (props: React.SVGProps) => (
-
-)
diff --git a/src/components/NavBar/MenuDropdown.tsx b/src/components/NavBar/MenuDropdown.tsx
index 1167ca03acd..3f5b501392b 100644
--- a/src/components/NavBar/MenuDropdown.tsx
+++ b/src/components/NavBar/MenuDropdown.tsx
@@ -4,7 +4,6 @@ import { useOnClickOutside } from 'hooks/useOnClickOutside'
import { Box } from 'nft/components/Box'
import { Column, Row } from 'nft/components/Flex'
import {
- BarChartIcon,
DiscordIconMenu,
EllipsisIcon,
GithubIconMenu,
@@ -19,9 +18,7 @@ import { NavLink, NavLinkProps } from 'react-router-dom'
import { useToggleModal } from 'state/application/hooks'
import styled, { useTheme } from 'styled-components'
import { isDevelopmentEnv, isStagingEnv } from 'utils/env'
-import { openDownloadApp } from 'utils/openDownloadApp'
-import { ReactComponent as AppleLogo } from '../../assets/svg/apple_logo.svg'
import { ApplicationModal } from '../../state/application/reducer'
import * as styles from './MenuDropdown.css'
import { NavDropdown } from './NavDropdown'
@@ -147,16 +144,6 @@ export const MenuDropdown = () => {
- openDownloadApp()}>
-
-
-
-
-
- Download Uniswap Wallet
-
-
-
@@ -165,14 +152,6 @@ export const MenuDropdown = () => {
Vote in governance
-
-
-
-
-
- View more analytics
-
-
{
Documentation ↗
-
- Feedback ↗
-
{(isDevelopmentEnv() || isStagingEnv()) && (
{
@@ -203,13 +179,13 @@ export const MenuDropdown = () => {
)}
-
+
-
+
-
+
diff --git a/src/components/TopLevelModals/index.tsx b/src/components/TopLevelModals/index.tsx
index cdf45402544..b5474782ead 100644
--- a/src/components/TopLevelModals/index.tsx
+++ b/src/components/TopLevelModals/index.tsx
@@ -1,8 +1,6 @@
import { useWeb3React } from '@web3-react/core'
import { OffchainActivityModal } from 'components/AccountDrawer/MiniPortfolio/Activity/OffchainActivityModal'
-import UniwalletModal from 'components/AccountDrawer/UniwalletModal'
import AirdropModal from 'components/AirdropModal'
-import BaseAnnouncementBanner from 'components/Banner/BaseAnnouncementBanner'
import AddressClaimModal from 'components/claim/AddressClaimModal'
import ConnectedAccountBlocked from 'components/ConnectedAccountBlocked'
import FiatOnrampModal from 'components/FiatOnrampModal'
@@ -29,8 +27,6 @@ export default function TopLevelModals() {
-
-
diff --git a/src/nft/components/icons.tsx b/src/nft/components/icons.tsx
index fc8ddd8a4d4..60a2d00ff34 100644
--- a/src/nft/components/icons.tsx
+++ b/src/nft/components/icons.tsx
@@ -365,14 +365,6 @@ export const TagIcon = (props: SVGProps) => (
)
-export const BarChartIcon = (props: SVGProps) => (
-
-)
-
export const DiscordIcon = (props: SVGProps) => (