├── .dockerignore ├── .env.example ├── .eslintignore ├── .eslintrc.json ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── publish_canary.yml │ └── ui_test.yml ├── .gitignore ├── .husky └── pre-commit ├── .lintstagedrc.json ├── .prettierignore ├── .prettierrc.json ├── Dockerfile.canary ├── LICENSE ├── README.md ├── docker-canary.sh ├── exampleExternalProviderScripts ├── chatExternalProviderScript.js └── notifyExternalProviderScript.js ├── index.html ├── missing_in_hooks.md ├── package.json ├── playwright.config.ts ├── postcss.config.js ├── public ├── .well-known │ └── did.json ├── avive.png ├── fallback.svg ├── favicon.ico ├── icon.png ├── logo.png ├── manifest.json └── snapshot.png ├── renovate.json ├── src ├── App.scss ├── App.tsx ├── Modals.tsx ├── assets │ ├── Alarm.png │ ├── AllApps.svg │ ├── ArtistPalette.png │ ├── Card.png │ ├── Chart.png │ ├── ChatInviteHand.svg │ ├── ChatInviteHandEmoji.svg │ ├── ChatRejectedHandEmoji.svg │ ├── Check.svg │ ├── ChevronDark.svg │ ├── ChevronLight.svg │ ├── ClearIcon.png │ ├── Coin.png │ ├── ColoredNotificationBell.png │ ├── Compass.png │ ├── Cross.svg │ ├── DarkCity.png │ ├── Disconnect.svg │ ├── ETH.svg │ ├── Explorer.svg │ ├── ExternalLink.svg │ ├── EyeSpeechBubble.png │ ├── Eyes.png │ ├── FramedPicture.png │ ├── HalfHalfCity.png │ ├── HandStopEmoji.svg │ ├── Handshake.png │ ├── Heart.png │ ├── Icon.svg │ ├── Inbox.png │ ├── IntroBackground.png │ ├── Ledger.svg │ ├── LightCity.png │ ├── Logo.svg │ ├── MobilePhone.png │ ├── MoneyWithWings.png │ ├── Person.svg │ ├── PlaceholderAvatar.png │ ├── Plus.svg │ ├── QrCodeScan.svg │ ├── Search.svg │ ├── SendFilled.svg │ ├── Spanner.svg │ ├── SpeechBubble.png │ ├── Spinner.png │ ├── SubmitApp.svg │ ├── Toggle.png │ ├── UnreadIcon.png │ ├── W3iBell.svg │ ├── WavingHand.png │ ├── Website.svg │ ├── by_walletconnect.png │ ├── chat.png │ ├── fonts │ │ ├── ABCDiatype-Bold.woff2 │ │ ├── ABCDiatype-Regular.woff2 │ │ └── ABCDiatype-Thin.woff2 │ ├── foundation.svg │ ├── notifs.png │ ├── web3inbox.png │ └── zora.svg ├── components │ ├── account │ │ └── Avatar │ │ │ ├── Avatar.scss │ │ │ └── index.tsx │ ├── dev │ │ └── DevTimeStamp │ │ │ ├── DevTimeStamp.scss │ │ │ └── index.tsx │ ├── general │ │ ├── BackButton │ │ │ ├── BackButton.scss │ │ │ └── index.tsx │ │ ├── Badge │ │ │ ├── Badge.scss │ │ │ └── index.tsx │ │ ├── Banner │ │ │ ├── Banner.scss │ │ │ └── index.tsx │ │ ├── Button │ │ │ ├── Button.scss │ │ │ └── index.tsx │ │ ├── Checkbox │ │ │ ├── Checkbox.scss │ │ │ └── index.tsx │ │ ├── CircleBadge │ │ │ ├── CircleBadge.scss │ │ │ └── CircleBadge.tsx │ │ ├── Divider │ │ │ ├── Divider.scss │ │ │ └── index.tsx │ │ ├── Dropdown │ │ │ ├── Dropdown.scss │ │ │ └── Dropdown.tsx │ │ ├── ExternalLink │ │ │ ├── ExternalLink.scss │ │ │ └── index.tsx │ │ ├── FeatureInfoBox │ │ │ ├── FeatureInfoBox.scss │ │ │ └── index.tsx │ │ ├── Icon │ │ │ ├── AndroidShare.tsx │ │ │ ├── Appearance.tsx │ │ │ ├── ArrowLeftIcon.tsx │ │ │ ├── ArrowRightIcon.tsx │ │ │ ├── ArrowRightTopIcon.tsx │ │ │ ├── CheckIcon.tsx │ │ │ ├── CheckMarkIcon.tsx │ │ │ ├── ChevronRightIcon.tsx │ │ │ ├── CircleIcon.tsx │ │ │ ├── CircleQuestionIcon.tsx │ │ │ ├── CopyIcon.tsx │ │ │ ├── CrossIcon.tsx │ │ │ ├── CrossIcon2.tsx │ │ │ ├── DisconnectIcon.tsx │ │ │ ├── DiscordIcon.tsx │ │ │ ├── DotsIcon.tsx │ │ │ ├── EmailIcon.tsx │ │ │ ├── ExternalLinkIcon.tsx │ │ │ ├── GithubIcon.tsx │ │ │ ├── IShare.tsx │ │ │ ├── IconWrapper │ │ │ │ ├── IconWrapper.scss │ │ │ │ └── IconWrapper.tsx │ │ │ ├── IncomingIcon.tsx │ │ │ ├── IntroApps.tsx │ │ │ ├── IntroWallet.tsx │ │ │ ├── MessageCheckmarkIcon.tsx │ │ │ ├── MessageIcon.tsx │ │ │ ├── MoonIcon.tsx │ │ │ ├── NewAppIcon.tsx │ │ │ ├── NewMessageIcon.tsx │ │ │ ├── Notification.tsx │ │ │ ├── NotificationIcon.tsx │ │ │ ├── NotificationMuteIcon.tsx │ │ │ ├── OutgoingIcon.tsx │ │ │ ├── PencilIcon.tsx │ │ │ ├── PersonIcon.tsx │ │ │ ├── PlusIcon.tsx │ │ │ ├── PreferencesIcon.tsx │ │ │ ├── Privacy.tsx │ │ │ ├── ProfileCheckIcon.tsx │ │ │ ├── ProfileDeclineIcon.tsx │ │ │ ├── ProfileLoadingIcon.tsx │ │ │ ├── RedditIcon.tsx │ │ │ ├── RetryIcon.tsx │ │ │ ├── SearchIcon.tsx │ │ │ ├── SendIcon.tsx │ │ │ ├── SettingIcon.tsx │ │ │ ├── ShareIcon.tsx │ │ │ ├── SignatureIcon.tsx │ │ │ ├── SubscribeIcon.tsx │ │ │ ├── SunIcon.tsx │ │ │ ├── SystemIcon.tsx │ │ │ ├── TrashIcon.tsx │ │ │ ├── TwitterIcon.tsx │ │ │ ├── VerifiedIcon.tsx │ │ │ ├── Wallet.tsx │ │ │ ├── WalletConnectIcon.tsx │ │ │ └── WebsiteIcon.tsx │ │ ├── Input │ │ │ ├── Input.scss │ │ │ └── index.tsx │ │ ├── IntroContent │ │ │ ├── IntroContent.scss │ │ │ └── index.tsx │ │ ├── Label │ │ │ ├── Label.scss │ │ │ └── index.tsx │ │ ├── Modal │ │ │ ├── Modal.scss │ │ │ └── Modal.tsx │ │ ├── NavLink │ │ │ ├── NavLink.scss │ │ │ └── index.tsx │ │ ├── Radio │ │ │ ├── Radio.scss │ │ │ └── index.tsx │ │ ├── Search │ │ │ ├── Search.scss │ │ │ └── index.tsx │ │ ├── Select │ │ │ ├── DropdownIndicator.tsx │ │ │ ├── Select.scss │ │ │ └── Select.tsx │ │ ├── Spinner │ │ │ ├── Spinner.scss │ │ │ └── index.tsx │ │ ├── TargetTitle │ │ │ ├── TargetTitle.scss │ │ │ └── index.tsx │ │ ├── Text │ │ │ ├── Text.scss │ │ │ └── index.tsx │ │ ├── TextWithHighlight │ │ │ ├── TextWithHighlight.scss │ │ │ └── index.tsx │ │ ├── Textarea │ │ │ ├── Textarea.scss │ │ │ └── index.tsx │ │ ├── Toggle │ │ │ ├── Toggle.scss │ │ │ └── index.tsx │ │ ├── TransitionDiv │ │ │ └── index.tsx │ │ └── Web3InboxPlaceholder │ │ │ ├── Web3InboxPlaceholder.scss │ │ │ └── index.tsx │ ├── layout │ │ ├── Header │ │ │ ├── Header.scss │ │ │ └── index.tsx │ │ ├── MobileFooter │ │ │ ├── MobileFooter.scss │ │ │ └── index.tsx │ │ ├── MobileHeader │ │ │ ├── MobileHeader.scss │ │ │ └── index.tsx │ │ ├── MobileHeading │ │ │ ├── MobileHeading.scss │ │ │ └── index.tsx │ │ └── Sidebar │ │ │ ├── Sidebar.scss │ │ │ └── index.tsx │ ├── login │ │ └── ConnectWalletButton │ │ │ ├── ConnectWalletButton.scss │ │ │ └── index.tsx │ ├── notifications │ │ ├── AppExplorer │ │ │ ├── AppCard │ │ │ │ ├── AppCard.scss │ │ │ │ ├── SubscribeButton.tsx │ │ │ │ └── index.tsx │ │ │ ├── AppCardSkeleton │ │ │ │ ├── AppCardSkeleton.scss │ │ │ │ └── index.tsx │ │ │ ├── AppExplorer.scss │ │ │ ├── AppExplorerColumn │ │ │ │ └── index.tsx │ │ │ ├── AppExplorerHeader │ │ │ │ ├── AppExplorerHeader.scss │ │ │ │ └── index.tsx │ │ │ ├── AppExplorerSkeleton │ │ │ │ └── index.tsx │ │ │ └── index.tsx │ │ ├── AppNotifications │ │ │ ├── AppNotificationDropdown │ │ │ │ ├── AppNotificationDropdown.scss │ │ │ │ └── index.tsx │ │ │ ├── AppNotificationItem.tsx │ │ │ ├── AppNotificationItemSkeleton.tsx │ │ │ ├── AppNotifications.scss │ │ │ ├── AppNotificationsCardMobile │ │ │ │ ├── AppNotificationsCardMobile.scss │ │ │ │ └── index.tsx │ │ │ ├── AppNotificationsEmpty │ │ │ │ ├── AppNotificationsEmpty.scss │ │ │ │ └── index.tsx │ │ │ ├── AppNotificationsHeader │ │ │ │ ├── AppNotificationsHeader.scss │ │ │ │ └── index.tsx │ │ │ └── index.tsx │ │ ├── AppSelector │ │ │ ├── AppSelector.scss │ │ │ ├── LinkItemSkeleton │ │ │ │ ├── LinkItemSkeleton.scss │ │ │ │ └── index.tsx │ │ │ └── index.tsx │ │ ├── NotificationsActionsDropdown │ │ │ ├── NotificationsActionsDropdown.scss │ │ │ └── index.tsx │ │ └── NotificationsLayout │ │ │ ├── NotificationsLayout.scss │ │ │ ├── PreferencesModal │ │ │ ├── PreferencesModal.scss │ │ │ └── index.tsx │ │ │ ├── UnsubscribeModal │ │ │ ├── UnsubscribeModal.scss │ │ │ └── index.tsx │ │ │ └── index.tsx │ ├── settings │ │ ├── AppearanceSettings │ │ │ ├── AppearanceSettings.scss │ │ │ └── index.tsx │ │ ├── NotificationsSettings │ │ │ ├── NotificationsSettings.scss │ │ │ └── index.tsx │ │ ├── Settings │ │ │ ├── Settings.scss │ │ │ └── index.tsx │ │ ├── SettingsHeader │ │ │ ├── SettingsHeader.scss │ │ │ └── index.tsx │ │ ├── SettingsItem │ │ │ ├── SettingsItem.scss │ │ │ └── index.tsx │ │ ├── SettingsItemText │ │ │ ├── SettingsItemText.scss │ │ │ └── index.tsx │ │ ├── SettingsLayout │ │ │ └── index.tsx │ │ ├── SettingsSelector │ │ │ ├── SettingsSelector.scss │ │ │ └── index.tsx │ │ ├── SettingsThemeButton │ │ │ ├── SettingsThemeButton.scss │ │ │ └── index.tsx │ │ ├── SettingsToggle │ │ │ ├── Index.tsx │ │ │ └── SettingsToggle.scss │ │ └── SupportSettings │ │ │ ├── SupportSettings.scss │ │ │ └── index.tsx │ └── utils │ │ ├── AuthProtectedPage.tsx │ │ ├── ChangeBrowserModal │ │ ├── ChangeBrowserModal.scss │ │ └── index.tsx │ │ ├── NotificationPwaModal │ │ ├── NotificationPwaModal.scss │ │ └── index.tsx │ │ └── PwaModal │ │ ├── PwaModal.scss │ │ └── index.tsx ├── constants │ ├── localStorage.ts │ ├── navigation.ts │ ├── projects.ts │ └── web3Modal.ts ├── contexts │ ├── SettingsContext │ │ ├── context.ts │ │ └── index.tsx │ └── W3iContext │ │ ├── context.ts │ │ ├── hooks │ │ └── authHooks.ts │ │ └── index.tsx ├── firebase-messaging-sw.ts ├── hooks │ └── useBreakPoint.ts ├── index.css ├── main-sw.ts ├── main.tsx ├── pages │ ├── Login │ │ ├── Login.scss │ │ └── index.tsx │ └── ScanQrCode │ │ ├── ScanQrCode.scss │ │ └── index.tsx ├── reducers │ └── notifications.ts ├── routes.tsx ├── styles │ └── mixins.scss ├── utils │ ├── address.ts │ ├── chain.ts │ ├── constants.ts │ ├── ens.ts │ ├── env.ts │ ├── error.ts │ ├── firebase.ts │ ├── general.ts │ ├── hooks.ts │ ├── hooks │ │ ├── notificationHooks.ts │ │ ├── useNotificationsInfiniteScroll.tsx │ │ └── useNotifyProjects.ts │ ├── idb.ts │ ├── jsonrpc.ts │ ├── localStorage.ts │ ├── mixpanel.ts │ ├── mocks.ts │ ├── notifications.ts │ ├── polyfill.ts │ ├── projects.ts │ ├── pwa.ts │ ├── sentry.ts │ ├── signature.ts │ ├── siwe.ts │ ├── storage.ts │ ├── store.ts │ ├── string.ts │ ├── toasts.ts │ ├── types.ts │ ├── ui.ts │ ├── url.ts │ └── wagmiConfig.ts └── vite-env.d.ts ├── tests ├── README.md ├── canary.spec.ts ├── home.spec.ts ├── shared │ ├── constants │ │ └── index.ts │ ├── fixtures │ │ ├── fixture.ts │ │ └── wallet-fixture.ts │ ├── helpers │ │ └── notifyServer.ts │ ├── pages │ │ ├── DeviceRegistrationPage.ts │ │ ├── InboxPage.ts │ │ ├── SettingsPage.ts │ │ └── WalletPage.ts │ ├── types │ │ └── index.ts │ ├── utils │ │ └── metrics.ts │ └── validators │ │ ├── ModalValidator.ts │ │ └── WalletValidator.ts └── subscribe.spec.ts ├── tsconfig.json ├── tsconfig.node.json ├── vercel.json ├── vite.config.ts └── yarn.lock /.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | test-results 4 | playwright-report 5 | -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/publish_canary.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/.github/workflows/publish_canary.yml -------------------------------------------------------------------------------- /.github/workflows/ui_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/.github/workflows/ui_test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | . "$(dirname -- "$0")/_/husky.sh" 3 | 4 | yarn lint-staged 5 | -------------------------------------------------------------------------------- /.lintstagedrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/.lintstagedrc.json -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | dist 2 | vite.config.js 3 | node_modules -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /Dockerfile.canary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/Dockerfile.canary -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/README.md -------------------------------------------------------------------------------- /docker-canary.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/docker-canary.sh -------------------------------------------------------------------------------- /exampleExternalProviderScripts/chatExternalProviderScript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/exampleExternalProviderScripts/chatExternalProviderScript.js -------------------------------------------------------------------------------- /exampleExternalProviderScripts/notifyExternalProviderScript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/exampleExternalProviderScripts/notifyExternalProviderScript.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/index.html -------------------------------------------------------------------------------- /missing_in_hooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/missing_in_hooks.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/package.json -------------------------------------------------------------------------------- /playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/playwright.config.ts -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/.well-known/did.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/public/.well-known/did.json -------------------------------------------------------------------------------- /public/avive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/public/avive.png -------------------------------------------------------------------------------- /public/fallback.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/public/fallback.svg -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/public/icon.png -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/public/logo.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/snapshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/public/snapshot.png -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/renovate.json -------------------------------------------------------------------------------- /src/App.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/App.scss -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/Modals.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/Modals.tsx -------------------------------------------------------------------------------- /src/assets/Alarm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/assets/Alarm.png -------------------------------------------------------------------------------- /src/assets/AllApps.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/assets/AllApps.svg -------------------------------------------------------------------------------- /src/assets/ArtistPalette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/assets/ArtistPalette.png -------------------------------------------------------------------------------- /src/assets/Card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/assets/Card.png -------------------------------------------------------------------------------- /src/assets/Chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/assets/Chart.png -------------------------------------------------------------------------------- /src/assets/ChatInviteHand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/assets/ChatInviteHand.svg -------------------------------------------------------------------------------- /src/assets/ChatInviteHandEmoji.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/assets/ChatInviteHandEmoji.svg -------------------------------------------------------------------------------- /src/assets/ChatRejectedHandEmoji.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/assets/ChatRejectedHandEmoji.svg -------------------------------------------------------------------------------- /src/assets/Check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/assets/Check.svg -------------------------------------------------------------------------------- /src/assets/ChevronDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/assets/ChevronDark.svg -------------------------------------------------------------------------------- /src/assets/ChevronLight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/assets/ChevronLight.svg -------------------------------------------------------------------------------- /src/assets/ClearIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/assets/ClearIcon.png -------------------------------------------------------------------------------- /src/assets/Coin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/assets/Coin.png -------------------------------------------------------------------------------- /src/assets/ColoredNotificationBell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/assets/ColoredNotificationBell.png -------------------------------------------------------------------------------- /src/assets/Compass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/assets/Compass.png -------------------------------------------------------------------------------- /src/assets/Cross.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/assets/Cross.svg -------------------------------------------------------------------------------- /src/assets/DarkCity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/assets/DarkCity.png -------------------------------------------------------------------------------- /src/assets/Disconnect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/assets/Disconnect.svg -------------------------------------------------------------------------------- /src/assets/ETH.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/assets/ETH.svg -------------------------------------------------------------------------------- /src/assets/Explorer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/assets/Explorer.svg -------------------------------------------------------------------------------- /src/assets/ExternalLink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/assets/ExternalLink.svg -------------------------------------------------------------------------------- /src/assets/EyeSpeechBubble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/assets/EyeSpeechBubble.png -------------------------------------------------------------------------------- /src/assets/Eyes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/assets/Eyes.png -------------------------------------------------------------------------------- /src/assets/FramedPicture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/assets/FramedPicture.png -------------------------------------------------------------------------------- /src/assets/HalfHalfCity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/assets/HalfHalfCity.png -------------------------------------------------------------------------------- /src/assets/HandStopEmoji.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/assets/HandStopEmoji.svg -------------------------------------------------------------------------------- /src/assets/Handshake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/assets/Handshake.png -------------------------------------------------------------------------------- /src/assets/Heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/assets/Heart.png -------------------------------------------------------------------------------- /src/assets/Icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/assets/Icon.svg -------------------------------------------------------------------------------- /src/assets/Inbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/assets/Inbox.png -------------------------------------------------------------------------------- /src/assets/IntroBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/assets/IntroBackground.png -------------------------------------------------------------------------------- /src/assets/Ledger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/assets/Ledger.svg -------------------------------------------------------------------------------- /src/assets/LightCity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/assets/LightCity.png -------------------------------------------------------------------------------- /src/assets/Logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/assets/Logo.svg -------------------------------------------------------------------------------- /src/assets/MobilePhone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/assets/MobilePhone.png -------------------------------------------------------------------------------- /src/assets/MoneyWithWings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/assets/MoneyWithWings.png -------------------------------------------------------------------------------- /src/assets/Person.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/assets/Person.svg -------------------------------------------------------------------------------- /src/assets/PlaceholderAvatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/assets/PlaceholderAvatar.png -------------------------------------------------------------------------------- /src/assets/Plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/assets/Plus.svg -------------------------------------------------------------------------------- /src/assets/QrCodeScan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/assets/QrCodeScan.svg -------------------------------------------------------------------------------- /src/assets/Search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/assets/Search.svg -------------------------------------------------------------------------------- /src/assets/SendFilled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/assets/SendFilled.svg -------------------------------------------------------------------------------- /src/assets/Spanner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/assets/Spanner.svg -------------------------------------------------------------------------------- /src/assets/SpeechBubble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/assets/SpeechBubble.png -------------------------------------------------------------------------------- /src/assets/Spinner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/assets/Spinner.png -------------------------------------------------------------------------------- /src/assets/SubmitApp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/assets/SubmitApp.svg -------------------------------------------------------------------------------- /src/assets/Toggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/assets/Toggle.png -------------------------------------------------------------------------------- /src/assets/UnreadIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/assets/UnreadIcon.png -------------------------------------------------------------------------------- /src/assets/W3iBell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/assets/W3iBell.svg -------------------------------------------------------------------------------- /src/assets/WavingHand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/assets/WavingHand.png -------------------------------------------------------------------------------- /src/assets/Website.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/assets/Website.svg -------------------------------------------------------------------------------- /src/assets/by_walletconnect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/assets/by_walletconnect.png -------------------------------------------------------------------------------- /src/assets/chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/assets/chat.png -------------------------------------------------------------------------------- /src/assets/fonts/ABCDiatype-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/assets/fonts/ABCDiatype-Bold.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/ABCDiatype-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/assets/fonts/ABCDiatype-Regular.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/ABCDiatype-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/assets/fonts/ABCDiatype-Thin.woff2 -------------------------------------------------------------------------------- /src/assets/foundation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/assets/foundation.svg -------------------------------------------------------------------------------- /src/assets/notifs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/assets/notifs.png -------------------------------------------------------------------------------- /src/assets/web3inbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/assets/web3inbox.png -------------------------------------------------------------------------------- /src/assets/zora.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/assets/zora.svg -------------------------------------------------------------------------------- /src/components/account/Avatar/Avatar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/account/Avatar/Avatar.scss -------------------------------------------------------------------------------- /src/components/account/Avatar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/account/Avatar/index.tsx -------------------------------------------------------------------------------- /src/components/dev/DevTimeStamp/DevTimeStamp.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/dev/DevTimeStamp/DevTimeStamp.scss -------------------------------------------------------------------------------- /src/components/dev/DevTimeStamp/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/dev/DevTimeStamp/index.tsx -------------------------------------------------------------------------------- /src/components/general/BackButton/BackButton.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/BackButton/BackButton.scss -------------------------------------------------------------------------------- /src/components/general/BackButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/BackButton/index.tsx -------------------------------------------------------------------------------- /src/components/general/Badge/Badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Badge/Badge.scss -------------------------------------------------------------------------------- /src/components/general/Badge/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Badge/index.tsx -------------------------------------------------------------------------------- /src/components/general/Banner/Banner.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Banner/Banner.scss -------------------------------------------------------------------------------- /src/components/general/Banner/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Banner/index.tsx -------------------------------------------------------------------------------- /src/components/general/Button/Button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Button/Button.scss -------------------------------------------------------------------------------- /src/components/general/Button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Button/index.tsx -------------------------------------------------------------------------------- /src/components/general/Checkbox/Checkbox.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Checkbox/Checkbox.scss -------------------------------------------------------------------------------- /src/components/general/Checkbox/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Checkbox/index.tsx -------------------------------------------------------------------------------- /src/components/general/CircleBadge/CircleBadge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/CircleBadge/CircleBadge.scss -------------------------------------------------------------------------------- /src/components/general/CircleBadge/CircleBadge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/CircleBadge/CircleBadge.tsx -------------------------------------------------------------------------------- /src/components/general/Divider/Divider.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Divider/Divider.scss -------------------------------------------------------------------------------- /src/components/general/Divider/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Divider/index.tsx -------------------------------------------------------------------------------- /src/components/general/Dropdown/Dropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Dropdown/Dropdown.scss -------------------------------------------------------------------------------- /src/components/general/Dropdown/Dropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Dropdown/Dropdown.tsx -------------------------------------------------------------------------------- /src/components/general/ExternalLink/ExternalLink.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/ExternalLink/ExternalLink.scss -------------------------------------------------------------------------------- /src/components/general/ExternalLink/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/ExternalLink/index.tsx -------------------------------------------------------------------------------- /src/components/general/FeatureInfoBox/FeatureInfoBox.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/FeatureInfoBox/FeatureInfoBox.scss -------------------------------------------------------------------------------- /src/components/general/FeatureInfoBox/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/FeatureInfoBox/index.tsx -------------------------------------------------------------------------------- /src/components/general/Icon/AndroidShare.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Icon/AndroidShare.tsx -------------------------------------------------------------------------------- /src/components/general/Icon/Appearance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Icon/Appearance.tsx -------------------------------------------------------------------------------- /src/components/general/Icon/ArrowLeftIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Icon/ArrowLeftIcon.tsx -------------------------------------------------------------------------------- /src/components/general/Icon/ArrowRightIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Icon/ArrowRightIcon.tsx -------------------------------------------------------------------------------- /src/components/general/Icon/ArrowRightTopIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Icon/ArrowRightTopIcon.tsx -------------------------------------------------------------------------------- /src/components/general/Icon/CheckIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Icon/CheckIcon.tsx -------------------------------------------------------------------------------- /src/components/general/Icon/CheckMarkIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Icon/CheckMarkIcon.tsx -------------------------------------------------------------------------------- /src/components/general/Icon/ChevronRightIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Icon/ChevronRightIcon.tsx -------------------------------------------------------------------------------- /src/components/general/Icon/CircleIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Icon/CircleIcon.tsx -------------------------------------------------------------------------------- /src/components/general/Icon/CircleQuestionIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Icon/CircleQuestionIcon.tsx -------------------------------------------------------------------------------- /src/components/general/Icon/CopyIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Icon/CopyIcon.tsx -------------------------------------------------------------------------------- /src/components/general/Icon/CrossIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Icon/CrossIcon.tsx -------------------------------------------------------------------------------- /src/components/general/Icon/CrossIcon2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Icon/CrossIcon2.tsx -------------------------------------------------------------------------------- /src/components/general/Icon/DisconnectIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Icon/DisconnectIcon.tsx -------------------------------------------------------------------------------- /src/components/general/Icon/DiscordIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Icon/DiscordIcon.tsx -------------------------------------------------------------------------------- /src/components/general/Icon/DotsIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Icon/DotsIcon.tsx -------------------------------------------------------------------------------- /src/components/general/Icon/EmailIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Icon/EmailIcon.tsx -------------------------------------------------------------------------------- /src/components/general/Icon/ExternalLinkIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Icon/ExternalLinkIcon.tsx -------------------------------------------------------------------------------- /src/components/general/Icon/GithubIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Icon/GithubIcon.tsx -------------------------------------------------------------------------------- /src/components/general/Icon/IShare.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Icon/IShare.tsx -------------------------------------------------------------------------------- /src/components/general/Icon/IconWrapper/IconWrapper.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Icon/IconWrapper/IconWrapper.scss -------------------------------------------------------------------------------- /src/components/general/Icon/IconWrapper/IconWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Icon/IconWrapper/IconWrapper.tsx -------------------------------------------------------------------------------- /src/components/general/Icon/IncomingIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Icon/IncomingIcon.tsx -------------------------------------------------------------------------------- /src/components/general/Icon/IntroApps.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Icon/IntroApps.tsx -------------------------------------------------------------------------------- /src/components/general/Icon/IntroWallet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Icon/IntroWallet.tsx -------------------------------------------------------------------------------- /src/components/general/Icon/MessageCheckmarkIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Icon/MessageCheckmarkIcon.tsx -------------------------------------------------------------------------------- /src/components/general/Icon/MessageIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Icon/MessageIcon.tsx -------------------------------------------------------------------------------- /src/components/general/Icon/MoonIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Icon/MoonIcon.tsx -------------------------------------------------------------------------------- /src/components/general/Icon/NewAppIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Icon/NewAppIcon.tsx -------------------------------------------------------------------------------- /src/components/general/Icon/NewMessageIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Icon/NewMessageIcon.tsx -------------------------------------------------------------------------------- /src/components/general/Icon/Notification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Icon/Notification.tsx -------------------------------------------------------------------------------- /src/components/general/Icon/NotificationIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Icon/NotificationIcon.tsx -------------------------------------------------------------------------------- /src/components/general/Icon/NotificationMuteIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Icon/NotificationMuteIcon.tsx -------------------------------------------------------------------------------- /src/components/general/Icon/OutgoingIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Icon/OutgoingIcon.tsx -------------------------------------------------------------------------------- /src/components/general/Icon/PencilIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Icon/PencilIcon.tsx -------------------------------------------------------------------------------- /src/components/general/Icon/PersonIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Icon/PersonIcon.tsx -------------------------------------------------------------------------------- /src/components/general/Icon/PlusIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Icon/PlusIcon.tsx -------------------------------------------------------------------------------- /src/components/general/Icon/PreferencesIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Icon/PreferencesIcon.tsx -------------------------------------------------------------------------------- /src/components/general/Icon/Privacy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Icon/Privacy.tsx -------------------------------------------------------------------------------- /src/components/general/Icon/ProfileCheckIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Icon/ProfileCheckIcon.tsx -------------------------------------------------------------------------------- /src/components/general/Icon/ProfileDeclineIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Icon/ProfileDeclineIcon.tsx -------------------------------------------------------------------------------- /src/components/general/Icon/ProfileLoadingIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Icon/ProfileLoadingIcon.tsx -------------------------------------------------------------------------------- /src/components/general/Icon/RedditIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Icon/RedditIcon.tsx -------------------------------------------------------------------------------- /src/components/general/Icon/RetryIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Icon/RetryIcon.tsx -------------------------------------------------------------------------------- /src/components/general/Icon/SearchIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Icon/SearchIcon.tsx -------------------------------------------------------------------------------- /src/components/general/Icon/SendIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Icon/SendIcon.tsx -------------------------------------------------------------------------------- /src/components/general/Icon/SettingIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Icon/SettingIcon.tsx -------------------------------------------------------------------------------- /src/components/general/Icon/ShareIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Icon/ShareIcon.tsx -------------------------------------------------------------------------------- /src/components/general/Icon/SignatureIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Icon/SignatureIcon.tsx -------------------------------------------------------------------------------- /src/components/general/Icon/SubscribeIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Icon/SubscribeIcon.tsx -------------------------------------------------------------------------------- /src/components/general/Icon/SunIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Icon/SunIcon.tsx -------------------------------------------------------------------------------- /src/components/general/Icon/SystemIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Icon/SystemIcon.tsx -------------------------------------------------------------------------------- /src/components/general/Icon/TrashIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Icon/TrashIcon.tsx -------------------------------------------------------------------------------- /src/components/general/Icon/TwitterIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Icon/TwitterIcon.tsx -------------------------------------------------------------------------------- /src/components/general/Icon/VerifiedIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Icon/VerifiedIcon.tsx -------------------------------------------------------------------------------- /src/components/general/Icon/Wallet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Icon/Wallet.tsx -------------------------------------------------------------------------------- /src/components/general/Icon/WalletConnectIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Icon/WalletConnectIcon.tsx -------------------------------------------------------------------------------- /src/components/general/Icon/WebsiteIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Icon/WebsiteIcon.tsx -------------------------------------------------------------------------------- /src/components/general/Input/Input.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Input/Input.scss -------------------------------------------------------------------------------- /src/components/general/Input/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Input/index.tsx -------------------------------------------------------------------------------- /src/components/general/IntroContent/IntroContent.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/IntroContent/IntroContent.scss -------------------------------------------------------------------------------- /src/components/general/IntroContent/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/IntroContent/index.tsx -------------------------------------------------------------------------------- /src/components/general/Label/Label.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Label/Label.scss -------------------------------------------------------------------------------- /src/components/general/Label/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Label/index.tsx -------------------------------------------------------------------------------- /src/components/general/Modal/Modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Modal/Modal.scss -------------------------------------------------------------------------------- /src/components/general/Modal/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Modal/Modal.tsx -------------------------------------------------------------------------------- /src/components/general/NavLink/NavLink.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/NavLink/NavLink.scss -------------------------------------------------------------------------------- /src/components/general/NavLink/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/NavLink/index.tsx -------------------------------------------------------------------------------- /src/components/general/Radio/Radio.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Radio/Radio.scss -------------------------------------------------------------------------------- /src/components/general/Radio/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Radio/index.tsx -------------------------------------------------------------------------------- /src/components/general/Search/Search.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Search/Search.scss -------------------------------------------------------------------------------- /src/components/general/Search/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Search/index.tsx -------------------------------------------------------------------------------- /src/components/general/Select/DropdownIndicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Select/DropdownIndicator.tsx -------------------------------------------------------------------------------- /src/components/general/Select/Select.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Select/Select.scss -------------------------------------------------------------------------------- /src/components/general/Select/Select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Select/Select.tsx -------------------------------------------------------------------------------- /src/components/general/Spinner/Spinner.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Spinner/Spinner.scss -------------------------------------------------------------------------------- /src/components/general/Spinner/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Spinner/index.tsx -------------------------------------------------------------------------------- /src/components/general/TargetTitle/TargetTitle.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/TargetTitle/TargetTitle.scss -------------------------------------------------------------------------------- /src/components/general/TargetTitle/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/TargetTitle/index.tsx -------------------------------------------------------------------------------- /src/components/general/Text/Text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Text/Text.scss -------------------------------------------------------------------------------- /src/components/general/Text/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Text/index.tsx -------------------------------------------------------------------------------- /src/components/general/TextWithHighlight/TextWithHighlight.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/TextWithHighlight/TextWithHighlight.scss -------------------------------------------------------------------------------- /src/components/general/TextWithHighlight/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/TextWithHighlight/index.tsx -------------------------------------------------------------------------------- /src/components/general/Textarea/Textarea.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Textarea/Textarea.scss -------------------------------------------------------------------------------- /src/components/general/Textarea/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Textarea/index.tsx -------------------------------------------------------------------------------- /src/components/general/Toggle/Toggle.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Toggle/Toggle.scss -------------------------------------------------------------------------------- /src/components/general/Toggle/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Toggle/index.tsx -------------------------------------------------------------------------------- /src/components/general/TransitionDiv/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/TransitionDiv/index.tsx -------------------------------------------------------------------------------- /src/components/general/Web3InboxPlaceholder/Web3InboxPlaceholder.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Web3InboxPlaceholder/Web3InboxPlaceholder.scss -------------------------------------------------------------------------------- /src/components/general/Web3InboxPlaceholder/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/general/Web3InboxPlaceholder/index.tsx -------------------------------------------------------------------------------- /src/components/layout/Header/Header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/layout/Header/Header.scss -------------------------------------------------------------------------------- /src/components/layout/Header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/layout/Header/index.tsx -------------------------------------------------------------------------------- /src/components/layout/MobileFooter/MobileFooter.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/layout/MobileFooter/MobileFooter.scss -------------------------------------------------------------------------------- /src/components/layout/MobileFooter/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/layout/MobileFooter/index.tsx -------------------------------------------------------------------------------- /src/components/layout/MobileHeader/MobileHeader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/layout/MobileHeader/MobileHeader.scss -------------------------------------------------------------------------------- /src/components/layout/MobileHeader/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/layout/MobileHeader/index.tsx -------------------------------------------------------------------------------- /src/components/layout/MobileHeading/MobileHeading.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/layout/MobileHeading/MobileHeading.scss -------------------------------------------------------------------------------- /src/components/layout/MobileHeading/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/layout/MobileHeading/index.tsx -------------------------------------------------------------------------------- /src/components/layout/Sidebar/Sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/layout/Sidebar/Sidebar.scss -------------------------------------------------------------------------------- /src/components/layout/Sidebar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/layout/Sidebar/index.tsx -------------------------------------------------------------------------------- /src/components/login/ConnectWalletButton/ConnectWalletButton.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/login/ConnectWalletButton/ConnectWalletButton.scss -------------------------------------------------------------------------------- /src/components/login/ConnectWalletButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/login/ConnectWalletButton/index.tsx -------------------------------------------------------------------------------- /src/components/notifications/AppExplorer/AppCard/AppCard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/notifications/AppExplorer/AppCard/AppCard.scss -------------------------------------------------------------------------------- /src/components/notifications/AppExplorer/AppCard/SubscribeButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/notifications/AppExplorer/AppCard/SubscribeButton.tsx -------------------------------------------------------------------------------- /src/components/notifications/AppExplorer/AppCard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/notifications/AppExplorer/AppCard/index.tsx -------------------------------------------------------------------------------- /src/components/notifications/AppExplorer/AppCardSkeleton/AppCardSkeleton.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/notifications/AppExplorer/AppCardSkeleton/AppCardSkeleton.scss -------------------------------------------------------------------------------- /src/components/notifications/AppExplorer/AppCardSkeleton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/notifications/AppExplorer/AppCardSkeleton/index.tsx -------------------------------------------------------------------------------- /src/components/notifications/AppExplorer/AppExplorer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/notifications/AppExplorer/AppExplorer.scss -------------------------------------------------------------------------------- /src/components/notifications/AppExplorer/AppExplorerColumn/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/notifications/AppExplorer/AppExplorerColumn/index.tsx -------------------------------------------------------------------------------- /src/components/notifications/AppExplorer/AppExplorerHeader/AppExplorerHeader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/notifications/AppExplorer/AppExplorerHeader/AppExplorerHeader.scss -------------------------------------------------------------------------------- /src/components/notifications/AppExplorer/AppExplorerHeader/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/notifications/AppExplorer/AppExplorerHeader/index.tsx -------------------------------------------------------------------------------- /src/components/notifications/AppExplorer/AppExplorerSkeleton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/notifications/AppExplorer/AppExplorerSkeleton/index.tsx -------------------------------------------------------------------------------- /src/components/notifications/AppExplorer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/notifications/AppExplorer/index.tsx -------------------------------------------------------------------------------- /src/components/notifications/AppNotifications/AppNotificationDropdown/AppNotificationDropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/notifications/AppNotifications/AppNotificationDropdown/AppNotificationDropdown.scss -------------------------------------------------------------------------------- /src/components/notifications/AppNotifications/AppNotificationDropdown/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/notifications/AppNotifications/AppNotificationDropdown/index.tsx -------------------------------------------------------------------------------- /src/components/notifications/AppNotifications/AppNotificationItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/notifications/AppNotifications/AppNotificationItem.tsx -------------------------------------------------------------------------------- /src/components/notifications/AppNotifications/AppNotificationItemSkeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/notifications/AppNotifications/AppNotificationItemSkeleton.tsx -------------------------------------------------------------------------------- /src/components/notifications/AppNotifications/AppNotifications.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/notifications/AppNotifications/AppNotifications.scss -------------------------------------------------------------------------------- /src/components/notifications/AppNotifications/AppNotificationsCardMobile/AppNotificationsCardMobile.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/notifications/AppNotifications/AppNotificationsCardMobile/AppNotificationsCardMobile.scss -------------------------------------------------------------------------------- /src/components/notifications/AppNotifications/AppNotificationsCardMobile/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/notifications/AppNotifications/AppNotificationsCardMobile/index.tsx -------------------------------------------------------------------------------- /src/components/notifications/AppNotifications/AppNotificationsEmpty/AppNotificationsEmpty.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/notifications/AppNotifications/AppNotificationsEmpty/AppNotificationsEmpty.scss -------------------------------------------------------------------------------- /src/components/notifications/AppNotifications/AppNotificationsEmpty/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/notifications/AppNotifications/AppNotificationsEmpty/index.tsx -------------------------------------------------------------------------------- /src/components/notifications/AppNotifications/AppNotificationsHeader/AppNotificationsHeader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/notifications/AppNotifications/AppNotificationsHeader/AppNotificationsHeader.scss -------------------------------------------------------------------------------- /src/components/notifications/AppNotifications/AppNotificationsHeader/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/notifications/AppNotifications/AppNotificationsHeader/index.tsx -------------------------------------------------------------------------------- /src/components/notifications/AppNotifications/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/notifications/AppNotifications/index.tsx -------------------------------------------------------------------------------- /src/components/notifications/AppSelector/AppSelector.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/notifications/AppSelector/AppSelector.scss -------------------------------------------------------------------------------- /src/components/notifications/AppSelector/LinkItemSkeleton/LinkItemSkeleton.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/notifications/AppSelector/LinkItemSkeleton/LinkItemSkeleton.scss -------------------------------------------------------------------------------- /src/components/notifications/AppSelector/LinkItemSkeleton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/notifications/AppSelector/LinkItemSkeleton/index.tsx -------------------------------------------------------------------------------- /src/components/notifications/AppSelector/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/notifications/AppSelector/index.tsx -------------------------------------------------------------------------------- /src/components/notifications/NotificationsActionsDropdown/NotificationsActionsDropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/notifications/NotificationsActionsDropdown/NotificationsActionsDropdown.scss -------------------------------------------------------------------------------- /src/components/notifications/NotificationsActionsDropdown/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/notifications/NotificationsActionsDropdown/index.tsx -------------------------------------------------------------------------------- /src/components/notifications/NotificationsLayout/NotificationsLayout.scss: -------------------------------------------------------------------------------- 1 | .TargetSelector { 2 | min-width: 17.5em; 3 | } 4 | -------------------------------------------------------------------------------- /src/components/notifications/NotificationsLayout/PreferencesModal/PreferencesModal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/notifications/NotificationsLayout/PreferencesModal/PreferencesModal.scss -------------------------------------------------------------------------------- /src/components/notifications/NotificationsLayout/PreferencesModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/notifications/NotificationsLayout/PreferencesModal/index.tsx -------------------------------------------------------------------------------- /src/components/notifications/NotificationsLayout/UnsubscribeModal/UnsubscribeModal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/notifications/NotificationsLayout/UnsubscribeModal/UnsubscribeModal.scss -------------------------------------------------------------------------------- /src/components/notifications/NotificationsLayout/UnsubscribeModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/notifications/NotificationsLayout/UnsubscribeModal/index.tsx -------------------------------------------------------------------------------- /src/components/notifications/NotificationsLayout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/notifications/NotificationsLayout/index.tsx -------------------------------------------------------------------------------- /src/components/settings/AppearanceSettings/AppearanceSettings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/settings/AppearanceSettings/AppearanceSettings.scss -------------------------------------------------------------------------------- /src/components/settings/AppearanceSettings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/settings/AppearanceSettings/index.tsx -------------------------------------------------------------------------------- /src/components/settings/NotificationsSettings/NotificationsSettings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/settings/NotificationsSettings/NotificationsSettings.scss -------------------------------------------------------------------------------- /src/components/settings/NotificationsSettings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/settings/NotificationsSettings/index.tsx -------------------------------------------------------------------------------- /src/components/settings/Settings/Settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/settings/Settings/Settings.scss -------------------------------------------------------------------------------- /src/components/settings/Settings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/settings/Settings/index.tsx -------------------------------------------------------------------------------- /src/components/settings/SettingsHeader/SettingsHeader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/settings/SettingsHeader/SettingsHeader.scss -------------------------------------------------------------------------------- /src/components/settings/SettingsHeader/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/settings/SettingsHeader/index.tsx -------------------------------------------------------------------------------- /src/components/settings/SettingsItem/SettingsItem.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/settings/SettingsItem/SettingsItem.scss -------------------------------------------------------------------------------- /src/components/settings/SettingsItem/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/settings/SettingsItem/index.tsx -------------------------------------------------------------------------------- /src/components/settings/SettingsItemText/SettingsItemText.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/settings/SettingsItemText/SettingsItemText.scss -------------------------------------------------------------------------------- /src/components/settings/SettingsItemText/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/settings/SettingsItemText/index.tsx -------------------------------------------------------------------------------- /src/components/settings/SettingsLayout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/settings/SettingsLayout/index.tsx -------------------------------------------------------------------------------- /src/components/settings/SettingsSelector/SettingsSelector.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/settings/SettingsSelector/SettingsSelector.scss -------------------------------------------------------------------------------- /src/components/settings/SettingsSelector/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/settings/SettingsSelector/index.tsx -------------------------------------------------------------------------------- /src/components/settings/SettingsThemeButton/SettingsThemeButton.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/settings/SettingsThemeButton/SettingsThemeButton.scss -------------------------------------------------------------------------------- /src/components/settings/SettingsThemeButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/settings/SettingsThemeButton/index.tsx -------------------------------------------------------------------------------- /src/components/settings/SettingsToggle/Index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/settings/SettingsToggle/Index.tsx -------------------------------------------------------------------------------- /src/components/settings/SettingsToggle/SettingsToggle.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/settings/SettingsToggle/SettingsToggle.scss -------------------------------------------------------------------------------- /src/components/settings/SupportSettings/SupportSettings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/settings/SupportSettings/SupportSettings.scss -------------------------------------------------------------------------------- /src/components/settings/SupportSettings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/settings/SupportSettings/index.tsx -------------------------------------------------------------------------------- /src/components/utils/AuthProtectedPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/utils/AuthProtectedPage.tsx -------------------------------------------------------------------------------- /src/components/utils/ChangeBrowserModal/ChangeBrowserModal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/utils/ChangeBrowserModal/ChangeBrowserModal.scss -------------------------------------------------------------------------------- /src/components/utils/ChangeBrowserModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/utils/ChangeBrowserModal/index.tsx -------------------------------------------------------------------------------- /src/components/utils/NotificationPwaModal/NotificationPwaModal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/utils/NotificationPwaModal/NotificationPwaModal.scss -------------------------------------------------------------------------------- /src/components/utils/NotificationPwaModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/utils/NotificationPwaModal/index.tsx -------------------------------------------------------------------------------- /src/components/utils/PwaModal/PwaModal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/utils/PwaModal/PwaModal.scss -------------------------------------------------------------------------------- /src/components/utils/PwaModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/components/utils/PwaModal/index.tsx -------------------------------------------------------------------------------- /src/constants/localStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/constants/localStorage.ts -------------------------------------------------------------------------------- /src/constants/navigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/constants/navigation.ts -------------------------------------------------------------------------------- /src/constants/projects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/constants/projects.ts -------------------------------------------------------------------------------- /src/constants/web3Modal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/constants/web3Modal.ts -------------------------------------------------------------------------------- /src/contexts/SettingsContext/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/contexts/SettingsContext/context.ts -------------------------------------------------------------------------------- /src/contexts/SettingsContext/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/contexts/SettingsContext/index.tsx -------------------------------------------------------------------------------- /src/contexts/W3iContext/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/contexts/W3iContext/context.ts -------------------------------------------------------------------------------- /src/contexts/W3iContext/hooks/authHooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/contexts/W3iContext/hooks/authHooks.ts -------------------------------------------------------------------------------- /src/contexts/W3iContext/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/contexts/W3iContext/index.tsx -------------------------------------------------------------------------------- /src/firebase-messaging-sw.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/firebase-messaging-sw.ts -------------------------------------------------------------------------------- /src/hooks/useBreakPoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/hooks/useBreakPoint.ts -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/index.css -------------------------------------------------------------------------------- /src/main-sw.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/main-sw.ts -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/pages/Login/Login.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/pages/Login/Login.scss -------------------------------------------------------------------------------- /src/pages/Login/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/pages/Login/index.tsx -------------------------------------------------------------------------------- /src/pages/ScanQrCode/ScanQrCode.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/pages/ScanQrCode/ScanQrCode.scss -------------------------------------------------------------------------------- /src/pages/ScanQrCode/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/pages/ScanQrCode/index.tsx -------------------------------------------------------------------------------- /src/reducers/notifications.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/reducers/notifications.ts -------------------------------------------------------------------------------- /src/routes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/routes.tsx -------------------------------------------------------------------------------- /src/styles/mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/styles/mixins.scss -------------------------------------------------------------------------------- /src/utils/address.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/utils/address.ts -------------------------------------------------------------------------------- /src/utils/chain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/utils/chain.ts -------------------------------------------------------------------------------- /src/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/utils/constants.ts -------------------------------------------------------------------------------- /src/utils/ens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/utils/ens.ts -------------------------------------------------------------------------------- /src/utils/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/utils/env.ts -------------------------------------------------------------------------------- /src/utils/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/utils/error.ts -------------------------------------------------------------------------------- /src/utils/firebase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/utils/firebase.ts -------------------------------------------------------------------------------- /src/utils/general.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/utils/general.ts -------------------------------------------------------------------------------- /src/utils/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/utils/hooks.ts -------------------------------------------------------------------------------- /src/utils/hooks/notificationHooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/utils/hooks/notificationHooks.ts -------------------------------------------------------------------------------- /src/utils/hooks/useNotificationsInfiniteScroll.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/utils/hooks/useNotificationsInfiniteScroll.tsx -------------------------------------------------------------------------------- /src/utils/hooks/useNotifyProjects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/utils/hooks/useNotifyProjects.ts -------------------------------------------------------------------------------- /src/utils/idb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/utils/idb.ts -------------------------------------------------------------------------------- /src/utils/jsonrpc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/utils/jsonrpc.ts -------------------------------------------------------------------------------- /src/utils/localStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/utils/localStorage.ts -------------------------------------------------------------------------------- /src/utils/mixpanel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/utils/mixpanel.ts -------------------------------------------------------------------------------- /src/utils/mocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/utils/mocks.ts -------------------------------------------------------------------------------- /src/utils/notifications.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/utils/notifications.ts -------------------------------------------------------------------------------- /src/utils/polyfill.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/utils/polyfill.ts -------------------------------------------------------------------------------- /src/utils/projects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/utils/projects.ts -------------------------------------------------------------------------------- /src/utils/pwa.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/utils/pwa.ts -------------------------------------------------------------------------------- /src/utils/sentry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/utils/sentry.ts -------------------------------------------------------------------------------- /src/utils/signature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/utils/signature.ts -------------------------------------------------------------------------------- /src/utils/siwe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/utils/siwe.ts -------------------------------------------------------------------------------- /src/utils/storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/utils/storage.ts -------------------------------------------------------------------------------- /src/utils/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/utils/store.ts -------------------------------------------------------------------------------- /src/utils/string.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/utils/string.ts -------------------------------------------------------------------------------- /src/utils/toasts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/utils/toasts.ts -------------------------------------------------------------------------------- /src/utils/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/utils/types.ts -------------------------------------------------------------------------------- /src/utils/ui.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/utils/ui.ts -------------------------------------------------------------------------------- /src/utils/url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/utils/url.ts -------------------------------------------------------------------------------- /src/utils/wagmiConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/src/utils/wagmiConfig.ts -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/canary.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/tests/canary.spec.ts -------------------------------------------------------------------------------- /tests/home.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/tests/home.spec.ts -------------------------------------------------------------------------------- /tests/shared/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/tests/shared/constants/index.ts -------------------------------------------------------------------------------- /tests/shared/fixtures/fixture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/tests/shared/fixtures/fixture.ts -------------------------------------------------------------------------------- /tests/shared/fixtures/wallet-fixture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/tests/shared/fixtures/wallet-fixture.ts -------------------------------------------------------------------------------- /tests/shared/helpers/notifyServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/tests/shared/helpers/notifyServer.ts -------------------------------------------------------------------------------- /tests/shared/pages/DeviceRegistrationPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/tests/shared/pages/DeviceRegistrationPage.ts -------------------------------------------------------------------------------- /tests/shared/pages/InboxPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/tests/shared/pages/InboxPage.ts -------------------------------------------------------------------------------- /tests/shared/pages/SettingsPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/tests/shared/pages/SettingsPage.ts -------------------------------------------------------------------------------- /tests/shared/pages/WalletPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/tests/shared/pages/WalletPage.ts -------------------------------------------------------------------------------- /tests/shared/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/tests/shared/types/index.ts -------------------------------------------------------------------------------- /tests/shared/utils/metrics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/tests/shared/utils/metrics.ts -------------------------------------------------------------------------------- /tests/shared/validators/ModalValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/tests/shared/validators/ModalValidator.ts -------------------------------------------------------------------------------- /tests/shared/validators/WalletValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/tests/shared/validators/WalletValidator.ts -------------------------------------------------------------------------------- /tests/subscribe.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/tests/subscribe.spec.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/vercel.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/vite.config.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalletConnect/web3inbox/HEAD/yarn.lock --------------------------------------------------------------------------------