├── .env ├── .env.production ├── .eslintrc.json ├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.md │ ├── config.yml │ ├── feature-request.md │ └── something-else.md ├── pull_request_template.md └── workflows │ ├── release.yaml │ └── tests.yaml ├── .gitignore ├── .prettierrc ├── .yarnrc ├── LICENSE ├── README.md ├── cypress.json ├── cypress ├── integration │ ├── add-liquidity.test.ts │ ├── landing.test.ts │ ├── lists.test.ts │ ├── migrate-v1.test.ts │ ├── pool.test.ts │ ├── remove-liquidity.test.ts │ ├── send.test.ts │ ├── swap.test.ts │ └── token-warning.ts ├── support │ ├── commands.d.ts │ ├── commands.js │ └── index.js └── tsconfig.json ├── package.json ├── public ├── 451.html ├── favicon.ico ├── images │ ├── 192x192_App_Icon.png │ ├── 512x512_App_Icon.png │ └── favicon.png ├── index.html ├── locales │ ├── de.json │ ├── en.json │ ├── es-AR.json │ ├── es-US.json │ ├── it-IT.json │ ├── iw.json │ ├── ro.json │ ├── ru.json │ ├── vi.json │ ├── zh-CN.json │ └── zh-TW.json └── manifest.json ├── src ├── assets │ ├── images │ │ ├── arrow-down-blue.svg │ │ ├── arrow-down-grey.svg │ │ ├── arrow-right-white.png │ │ ├── arrow-right.svg │ │ ├── blue-loader.svg │ │ ├── circle-grey.svg │ │ ├── circle.svg │ │ ├── coinbaseWalletIcon.svg │ │ ├── dropdown-blue.svg │ │ ├── dropdown.svg │ │ ├── dropup-blue.svg │ │ ├── ethereum-logo.png │ │ ├── fortmaticIcon.png │ │ ├── link.svg │ │ ├── magnifying-glass.svg │ │ ├── menu.svg │ │ ├── metamask.png │ │ ├── plus-blue.svg │ │ ├── plus-grey.svg │ │ ├── plus-white.svg │ │ ├── portisIcon.png │ │ ├── question-mark.svg │ │ ├── question.svg │ │ ├── spinner.svg │ │ ├── token-list │ │ │ ├── lists-dark.png │ │ │ └── lists-light.png │ │ ├── trustWallet.png │ │ ├── walletConnectIcon.svg │ │ ├── x.svg │ │ └── xdai-logo.png │ └── svg │ │ ├── QR.svg │ │ ├── bee.svg │ │ ├── lightcircle.svg │ │ ├── logo.svg │ │ ├── logo_white.svg │ │ ├── wordmark.svg │ │ └── wordmark_white.svg ├── components │ ├── AccountDetails │ │ ├── Copy.tsx │ │ ├── Transaction.tsx │ │ └── index.tsx │ ├── AddressInputPanel │ │ └── index.tsx │ ├── Button │ │ └── index.tsx │ ├── Card │ │ └── index.tsx │ ├── Column │ │ └── index.tsx │ ├── CurrencyInputPanel │ │ └── index.tsx │ ├── CurrencyLogo │ │ └── index.tsx │ ├── DoubleLogo │ │ └── index.tsx │ ├── Header │ │ ├── VersionSwitch.tsx │ │ └── index.tsx │ ├── Identicon │ │ └── index.tsx │ ├── ListLogo │ │ └── index.tsx │ ├── Loader │ │ └── index.tsx │ ├── Logo │ │ └── index.tsx │ ├── Menu │ │ └── index.tsx │ ├── Modal │ │ └── index.tsx │ ├── NavigationTabs │ │ └── index.tsx │ ├── NumericalInput │ │ └── index.tsx │ ├── Popover │ │ └── index.tsx │ ├── Popups │ │ ├── ListUpdatePopup.tsx │ │ ├── PopupItem.tsx │ │ ├── TransactionPopup.tsx │ │ └── index.tsx │ ├── PositionCard │ │ ├── V1.tsx │ │ └── index.tsx │ ├── QuestionHelper │ │ └── index.tsx │ ├── Row │ │ └── index.tsx │ ├── SearchModal │ │ ├── CommonBases.tsx │ │ ├── CurrencyList.tsx │ │ ├── CurrencySearch.tsx │ │ ├── CurrencySearchModal.tsx │ │ ├── ListIntroduction.tsx │ │ ├── ListSelect.tsx │ │ ├── SortButton.tsx │ │ ├── filtering.ts │ │ ├── sorting.ts │ │ └── styleds.tsx │ ├── Settings │ │ └── index.tsx │ ├── Slider │ │ └── index.tsx │ ├── Toggle │ │ └── index.tsx │ ├── TokenWarningModal │ │ └── index.tsx │ ├── Tooltip │ │ └── index.tsx │ ├── TransactionConfirmationModal │ │ └── index.tsx │ ├── TransactionSettings │ │ └── index.tsx │ ├── WalletModal │ │ ├── Option.tsx │ │ ├── PendingView.tsx │ │ └── index.tsx │ ├── Web3ReactManager │ │ └── index.tsx │ ├── Web3Status │ │ └── index.tsx │ └── swap │ │ ├── AdvancedSwapDetails.tsx │ │ ├── AdvancedSwapDetailsDropdown.tsx │ │ ├── BetterTradeLink.tsx │ │ ├── ConfirmSwapModal.tsx │ │ ├── FormattedPriceImpact.tsx │ │ ├── SwapModalFooter.tsx │ │ ├── SwapModalHeader.tsx │ │ ├── SwapRoute.tsx │ │ ├── TradePrice.tsx │ │ ├── confirmPriceImpactWithoutFee.ts │ │ └── styleds.tsx ├── connectors │ ├── Fortmatic.ts │ ├── NetworkConnector.ts │ ├── fortmatic.d.ts │ └── index.ts ├── constants │ ├── abis │ │ ├── ens-public-resolver.json │ │ ├── ens-registrar.json │ │ ├── erc20.json │ │ ├── erc20.ts │ │ ├── erc20_bytes32.json │ │ ├── migrator.json │ │ ├── migrator.ts │ │ ├── unisocks.json │ │ └── weth.json │ ├── index.ts │ ├── lists.ts │ ├── multicall │ │ ├── abi.json │ │ └── index.ts │ └── v1 │ │ ├── index.ts │ │ ├── v1_exchange.json │ │ └── v1_factory.json ├── data │ ├── Allowances.ts │ ├── Reserves.ts │ ├── TotalSupply.ts │ └── V1.ts ├── hooks │ ├── Tokens.ts │ ├── Trades.ts │ ├── index.ts │ ├── useApproveCallback.ts │ ├── useContract.ts │ ├── useCopyClipboard.ts │ ├── useDebounce.ts │ ├── useENS.ts │ ├── useENSAddress.ts │ ├── useENSContentHash.ts │ ├── useENSName.ts │ ├── useFetchListCallback.ts │ ├── useHttpLocations.ts │ ├── useInterval.ts │ ├── useIsWindowVisible.ts │ ├── useLast.ts │ ├── useOnClickOutside.tsx │ ├── useParsedQueryString.ts │ ├── usePrevious.ts │ ├── useSocksBalance.ts │ ├── useSwapCallback.ts │ ├── useToggle.ts │ ├── useToggledVersion.ts │ └── useWrapCallback.ts ├── i18n.ts ├── index.tsx ├── pages │ ├── AddLiquidity │ │ ├── ConfirmAddModalBottom.tsx │ │ ├── PoolPriceBar.tsx │ │ ├── index.tsx │ │ └── redirects.tsx │ ├── App.tsx │ ├── AppBody.tsx │ ├── MigrateV1 │ │ ├── EmptyState.tsx │ │ ├── MigrateV1Exchange.tsx │ │ ├── RemoveV1Exchange.tsx │ │ └── index.tsx │ ├── Pool │ │ ├── index.tsx │ │ └── styleds.tsx │ ├── PoolFinder │ │ └── index.tsx │ ├── RemoveLiquidity │ │ ├── index.tsx │ │ └── redirects.tsx │ └── Swap │ │ ├── index.tsx │ │ └── redirects.tsx ├── react-app-env.d.ts ├── state │ ├── application │ │ ├── actions.ts │ │ ├── hooks.ts │ │ ├── reducer.test.ts │ │ ├── reducer.ts │ │ └── updater.ts │ ├── burn │ │ ├── actions.ts │ │ ├── hooks.ts │ │ └── reducer.ts │ ├── global │ │ └── actions.ts │ ├── index.ts │ ├── lists │ │ ├── actions.ts │ │ ├── hooks.ts │ │ ├── reducer.test.ts │ │ ├── reducer.ts │ │ └── updater.ts │ ├── mint │ │ ├── actions.ts │ │ ├── hooks.ts │ │ ├── reducer.test.ts │ │ └── reducer.ts │ ├── multicall │ │ ├── actions.test.ts │ │ ├── actions.ts │ │ ├── hooks.ts │ │ ├── reducer.test.ts │ │ ├── reducer.ts │ │ ├── updater.test.ts │ │ └── updater.tsx │ ├── swap │ │ ├── actions.ts │ │ ├── hooks.test.ts │ │ ├── hooks.ts │ │ ├── reducer.test.ts │ │ └── reducer.ts │ ├── transactions │ │ ├── actions.ts │ │ ├── hooks.tsx │ │ ├── reducer.test.ts │ │ ├── reducer.ts │ │ ├── updater.test.ts │ │ └── updater.tsx │ ├── user │ │ ├── actions.ts │ │ ├── hooks.tsx │ │ ├── reducer.test.ts │ │ ├── reducer.ts │ │ └── updater.tsx │ └── wallet │ │ └── hooks.ts ├── theme │ ├── DarkModeQueryParamReader.tsx │ ├── components.tsx │ ├── index.tsx │ └── styled.d.ts └── utils │ ├── addTokenToMetamask.ts │ ├── chunkArray.test.ts │ ├── chunkArray.ts │ ├── contenthashToUri.test.skip.ts │ ├── contenthashToUri.ts │ ├── currencyId.ts │ ├── getLibrary.ts │ ├── getTokenList.ts │ ├── index.test.ts │ ├── index.ts │ ├── isZero.ts │ ├── listVersionLabel.ts │ ├── maxAmountSpend.ts │ ├── parseENSAddress.test.ts │ ├── parseENSAddress.ts │ ├── prices.test.ts │ ├── prices.ts │ ├── resolveENSContentHash.ts │ ├── retry.test.ts │ ├── retry.ts │ ├── setupNetwork.ts │ ├── uriToHttp.test.ts │ ├── uriToHttp.ts │ ├── useDebouncedChangeHandler.tsx │ ├── useUSDCPrice.ts │ ├── v1SwapArgument.test.ts │ ├── v1SwapArguments.ts │ └── wrappedCurrency.ts ├── tsconfig.json └── yarn.lock /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/.env -------------------------------------------------------------------------------- /.env.production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/.env.production -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/.github/ISSUE_TEMPLATE/feature-request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/something-else.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/.github/ISSUE_TEMPLATE/something-else.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.github/workflows/tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/.github/workflows/tests.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/.prettierrc -------------------------------------------------------------------------------- /.yarnrc: -------------------------------------------------------------------------------- 1 | ignore-scripts true 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/README.md -------------------------------------------------------------------------------- /cypress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/cypress.json -------------------------------------------------------------------------------- /cypress/integration/add-liquidity.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/cypress/integration/add-liquidity.test.ts -------------------------------------------------------------------------------- /cypress/integration/landing.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/cypress/integration/landing.test.ts -------------------------------------------------------------------------------- /cypress/integration/lists.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/cypress/integration/lists.test.ts -------------------------------------------------------------------------------- /cypress/integration/migrate-v1.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/cypress/integration/migrate-v1.test.ts -------------------------------------------------------------------------------- /cypress/integration/pool.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/cypress/integration/pool.test.ts -------------------------------------------------------------------------------- /cypress/integration/remove-liquidity.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/cypress/integration/remove-liquidity.test.ts -------------------------------------------------------------------------------- /cypress/integration/send.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/cypress/integration/send.test.ts -------------------------------------------------------------------------------- /cypress/integration/swap.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/cypress/integration/swap.test.ts -------------------------------------------------------------------------------- /cypress/integration/token-warning.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/cypress/integration/token-warning.ts -------------------------------------------------------------------------------- /cypress/support/commands.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/cypress/support/commands.d.ts -------------------------------------------------------------------------------- /cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/cypress/support/commands.js -------------------------------------------------------------------------------- /cypress/support/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/cypress/support/index.js -------------------------------------------------------------------------------- /cypress/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/cypress/tsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/package.json -------------------------------------------------------------------------------- /public/451.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/public/451.html -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/images/192x192_App_Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/public/images/192x192_App_Icon.png -------------------------------------------------------------------------------- /public/images/512x512_App_Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/public/images/512x512_App_Icon.png -------------------------------------------------------------------------------- /public/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/public/images/favicon.png -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/public/index.html -------------------------------------------------------------------------------- /public/locales/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/public/locales/de.json -------------------------------------------------------------------------------- /public/locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/public/locales/en.json -------------------------------------------------------------------------------- /public/locales/es-AR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/public/locales/es-AR.json -------------------------------------------------------------------------------- /public/locales/es-US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/public/locales/es-US.json -------------------------------------------------------------------------------- /public/locales/it-IT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/public/locales/it-IT.json -------------------------------------------------------------------------------- /public/locales/iw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/public/locales/iw.json -------------------------------------------------------------------------------- /public/locales/ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/public/locales/ro.json -------------------------------------------------------------------------------- /public/locales/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/public/locales/ru.json -------------------------------------------------------------------------------- /public/locales/vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/public/locales/vi.json -------------------------------------------------------------------------------- /public/locales/zh-CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/public/locales/zh-CN.json -------------------------------------------------------------------------------- /public/locales/zh-TW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/public/locales/zh-TW.json -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/public/manifest.json -------------------------------------------------------------------------------- /src/assets/images/arrow-down-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/assets/images/arrow-down-blue.svg -------------------------------------------------------------------------------- /src/assets/images/arrow-down-grey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/assets/images/arrow-down-grey.svg -------------------------------------------------------------------------------- /src/assets/images/arrow-right-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/assets/images/arrow-right-white.png -------------------------------------------------------------------------------- /src/assets/images/arrow-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/assets/images/arrow-right.svg -------------------------------------------------------------------------------- /src/assets/images/blue-loader.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/assets/images/blue-loader.svg -------------------------------------------------------------------------------- /src/assets/images/circle-grey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/assets/images/circle-grey.svg -------------------------------------------------------------------------------- /src/assets/images/circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/assets/images/circle.svg -------------------------------------------------------------------------------- /src/assets/images/coinbaseWalletIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/assets/images/coinbaseWalletIcon.svg -------------------------------------------------------------------------------- /src/assets/images/dropdown-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/assets/images/dropdown-blue.svg -------------------------------------------------------------------------------- /src/assets/images/dropdown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/assets/images/dropdown.svg -------------------------------------------------------------------------------- /src/assets/images/dropup-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/assets/images/dropup-blue.svg -------------------------------------------------------------------------------- /src/assets/images/ethereum-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/assets/images/ethereum-logo.png -------------------------------------------------------------------------------- /src/assets/images/fortmaticIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/assets/images/fortmaticIcon.png -------------------------------------------------------------------------------- /src/assets/images/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/assets/images/link.svg -------------------------------------------------------------------------------- /src/assets/images/magnifying-glass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/assets/images/magnifying-glass.svg -------------------------------------------------------------------------------- /src/assets/images/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/assets/images/menu.svg -------------------------------------------------------------------------------- /src/assets/images/metamask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/assets/images/metamask.png -------------------------------------------------------------------------------- /src/assets/images/plus-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/assets/images/plus-blue.svg -------------------------------------------------------------------------------- /src/assets/images/plus-grey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/assets/images/plus-grey.svg -------------------------------------------------------------------------------- /src/assets/images/plus-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/assets/images/plus-white.svg -------------------------------------------------------------------------------- /src/assets/images/portisIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/assets/images/portisIcon.png -------------------------------------------------------------------------------- /src/assets/images/question-mark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/assets/images/question-mark.svg -------------------------------------------------------------------------------- /src/assets/images/question.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/assets/images/question.svg -------------------------------------------------------------------------------- /src/assets/images/spinner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/assets/images/spinner.svg -------------------------------------------------------------------------------- /src/assets/images/token-list/lists-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/assets/images/token-list/lists-dark.png -------------------------------------------------------------------------------- /src/assets/images/token-list/lists-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/assets/images/token-list/lists-light.png -------------------------------------------------------------------------------- /src/assets/images/trustWallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/assets/images/trustWallet.png -------------------------------------------------------------------------------- /src/assets/images/walletConnectIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/assets/images/walletConnectIcon.svg -------------------------------------------------------------------------------- /src/assets/images/x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/assets/images/x.svg -------------------------------------------------------------------------------- /src/assets/images/xdai-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/assets/images/xdai-logo.png -------------------------------------------------------------------------------- /src/assets/svg/QR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/assets/svg/QR.svg -------------------------------------------------------------------------------- /src/assets/svg/bee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/assets/svg/bee.svg -------------------------------------------------------------------------------- /src/assets/svg/lightcircle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/assets/svg/lightcircle.svg -------------------------------------------------------------------------------- /src/assets/svg/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/assets/svg/logo.svg -------------------------------------------------------------------------------- /src/assets/svg/logo_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/assets/svg/logo_white.svg -------------------------------------------------------------------------------- /src/assets/svg/wordmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/assets/svg/wordmark.svg -------------------------------------------------------------------------------- /src/assets/svg/wordmark_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/assets/svg/wordmark_white.svg -------------------------------------------------------------------------------- /src/components/AccountDetails/Copy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/components/AccountDetails/Copy.tsx -------------------------------------------------------------------------------- /src/components/AccountDetails/Transaction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/components/AccountDetails/Transaction.tsx -------------------------------------------------------------------------------- /src/components/AccountDetails/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/components/AccountDetails/index.tsx -------------------------------------------------------------------------------- /src/components/AddressInputPanel/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/components/AddressInputPanel/index.tsx -------------------------------------------------------------------------------- /src/components/Button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/components/Button/index.tsx -------------------------------------------------------------------------------- /src/components/Card/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/components/Card/index.tsx -------------------------------------------------------------------------------- /src/components/Column/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/components/Column/index.tsx -------------------------------------------------------------------------------- /src/components/CurrencyInputPanel/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/components/CurrencyInputPanel/index.tsx -------------------------------------------------------------------------------- /src/components/CurrencyLogo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/components/CurrencyLogo/index.tsx -------------------------------------------------------------------------------- /src/components/DoubleLogo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/components/DoubleLogo/index.tsx -------------------------------------------------------------------------------- /src/components/Header/VersionSwitch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/components/Header/VersionSwitch.tsx -------------------------------------------------------------------------------- /src/components/Header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/components/Header/index.tsx -------------------------------------------------------------------------------- /src/components/Identicon/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/components/Identicon/index.tsx -------------------------------------------------------------------------------- /src/components/ListLogo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/components/ListLogo/index.tsx -------------------------------------------------------------------------------- /src/components/Loader/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/components/Loader/index.tsx -------------------------------------------------------------------------------- /src/components/Logo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/components/Logo/index.tsx -------------------------------------------------------------------------------- /src/components/Menu/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/components/Menu/index.tsx -------------------------------------------------------------------------------- /src/components/Modal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/components/Modal/index.tsx -------------------------------------------------------------------------------- /src/components/NavigationTabs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/components/NavigationTabs/index.tsx -------------------------------------------------------------------------------- /src/components/NumericalInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/components/NumericalInput/index.tsx -------------------------------------------------------------------------------- /src/components/Popover/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/components/Popover/index.tsx -------------------------------------------------------------------------------- /src/components/Popups/ListUpdatePopup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/components/Popups/ListUpdatePopup.tsx -------------------------------------------------------------------------------- /src/components/Popups/PopupItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/components/Popups/PopupItem.tsx -------------------------------------------------------------------------------- /src/components/Popups/TransactionPopup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/components/Popups/TransactionPopup.tsx -------------------------------------------------------------------------------- /src/components/Popups/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/components/Popups/index.tsx -------------------------------------------------------------------------------- /src/components/PositionCard/V1.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/components/PositionCard/V1.tsx -------------------------------------------------------------------------------- /src/components/PositionCard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/components/PositionCard/index.tsx -------------------------------------------------------------------------------- /src/components/QuestionHelper/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/components/QuestionHelper/index.tsx -------------------------------------------------------------------------------- /src/components/Row/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/components/Row/index.tsx -------------------------------------------------------------------------------- /src/components/SearchModal/CommonBases.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/components/SearchModal/CommonBases.tsx -------------------------------------------------------------------------------- /src/components/SearchModal/CurrencyList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/components/SearchModal/CurrencyList.tsx -------------------------------------------------------------------------------- /src/components/SearchModal/CurrencySearch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/components/SearchModal/CurrencySearch.tsx -------------------------------------------------------------------------------- /src/components/SearchModal/CurrencySearchModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/components/SearchModal/CurrencySearchModal.tsx -------------------------------------------------------------------------------- /src/components/SearchModal/ListIntroduction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/components/SearchModal/ListIntroduction.tsx -------------------------------------------------------------------------------- /src/components/SearchModal/ListSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/components/SearchModal/ListSelect.tsx -------------------------------------------------------------------------------- /src/components/SearchModal/SortButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/components/SearchModal/SortButton.tsx -------------------------------------------------------------------------------- /src/components/SearchModal/filtering.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/components/SearchModal/filtering.ts -------------------------------------------------------------------------------- /src/components/SearchModal/sorting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/components/SearchModal/sorting.ts -------------------------------------------------------------------------------- /src/components/SearchModal/styleds.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/components/SearchModal/styleds.tsx -------------------------------------------------------------------------------- /src/components/Settings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/components/Settings/index.tsx -------------------------------------------------------------------------------- /src/components/Slider/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/components/Slider/index.tsx -------------------------------------------------------------------------------- /src/components/Toggle/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/components/Toggle/index.tsx -------------------------------------------------------------------------------- /src/components/TokenWarningModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/components/TokenWarningModal/index.tsx -------------------------------------------------------------------------------- /src/components/Tooltip/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/components/Tooltip/index.tsx -------------------------------------------------------------------------------- /src/components/TransactionConfirmationModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/components/TransactionConfirmationModal/index.tsx -------------------------------------------------------------------------------- /src/components/TransactionSettings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/components/TransactionSettings/index.tsx -------------------------------------------------------------------------------- /src/components/WalletModal/Option.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/components/WalletModal/Option.tsx -------------------------------------------------------------------------------- /src/components/WalletModal/PendingView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/components/WalletModal/PendingView.tsx -------------------------------------------------------------------------------- /src/components/WalletModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/components/WalletModal/index.tsx -------------------------------------------------------------------------------- /src/components/Web3ReactManager/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/components/Web3ReactManager/index.tsx -------------------------------------------------------------------------------- /src/components/Web3Status/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/components/Web3Status/index.tsx -------------------------------------------------------------------------------- /src/components/swap/AdvancedSwapDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/components/swap/AdvancedSwapDetails.tsx -------------------------------------------------------------------------------- /src/components/swap/AdvancedSwapDetailsDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/components/swap/AdvancedSwapDetailsDropdown.tsx -------------------------------------------------------------------------------- /src/components/swap/BetterTradeLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/components/swap/BetterTradeLink.tsx -------------------------------------------------------------------------------- /src/components/swap/ConfirmSwapModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/components/swap/ConfirmSwapModal.tsx -------------------------------------------------------------------------------- /src/components/swap/FormattedPriceImpact.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/components/swap/FormattedPriceImpact.tsx -------------------------------------------------------------------------------- /src/components/swap/SwapModalFooter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/components/swap/SwapModalFooter.tsx -------------------------------------------------------------------------------- /src/components/swap/SwapModalHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/components/swap/SwapModalHeader.tsx -------------------------------------------------------------------------------- /src/components/swap/SwapRoute.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/components/swap/SwapRoute.tsx -------------------------------------------------------------------------------- /src/components/swap/TradePrice.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/components/swap/TradePrice.tsx -------------------------------------------------------------------------------- /src/components/swap/confirmPriceImpactWithoutFee.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/components/swap/confirmPriceImpactWithoutFee.ts -------------------------------------------------------------------------------- /src/components/swap/styleds.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/components/swap/styleds.tsx -------------------------------------------------------------------------------- /src/connectors/Fortmatic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/connectors/Fortmatic.ts -------------------------------------------------------------------------------- /src/connectors/NetworkConnector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/connectors/NetworkConnector.ts -------------------------------------------------------------------------------- /src/connectors/fortmatic.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'formatic' 2 | -------------------------------------------------------------------------------- /src/connectors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/connectors/index.ts -------------------------------------------------------------------------------- /src/constants/abis/ens-public-resolver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/constants/abis/ens-public-resolver.json -------------------------------------------------------------------------------- /src/constants/abis/ens-registrar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/constants/abis/ens-registrar.json -------------------------------------------------------------------------------- /src/constants/abis/erc20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/constants/abis/erc20.json -------------------------------------------------------------------------------- /src/constants/abis/erc20.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/constants/abis/erc20.ts -------------------------------------------------------------------------------- /src/constants/abis/erc20_bytes32.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/constants/abis/erc20_bytes32.json -------------------------------------------------------------------------------- /src/constants/abis/migrator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/constants/abis/migrator.json -------------------------------------------------------------------------------- /src/constants/abis/migrator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/constants/abis/migrator.ts -------------------------------------------------------------------------------- /src/constants/abis/unisocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/constants/abis/unisocks.json -------------------------------------------------------------------------------- /src/constants/abis/weth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/constants/abis/weth.json -------------------------------------------------------------------------------- /src/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/constants/index.ts -------------------------------------------------------------------------------- /src/constants/lists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/constants/lists.ts -------------------------------------------------------------------------------- /src/constants/multicall/abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/constants/multicall/abi.json -------------------------------------------------------------------------------- /src/constants/multicall/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/constants/multicall/index.ts -------------------------------------------------------------------------------- /src/constants/v1/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/constants/v1/index.ts -------------------------------------------------------------------------------- /src/constants/v1/v1_exchange.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/constants/v1/v1_exchange.json -------------------------------------------------------------------------------- /src/constants/v1/v1_factory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/constants/v1/v1_factory.json -------------------------------------------------------------------------------- /src/data/Allowances.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/data/Allowances.ts -------------------------------------------------------------------------------- /src/data/Reserves.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/data/Reserves.ts -------------------------------------------------------------------------------- /src/data/TotalSupply.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/data/TotalSupply.ts -------------------------------------------------------------------------------- /src/data/V1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/data/V1.ts -------------------------------------------------------------------------------- /src/hooks/Tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/hooks/Tokens.ts -------------------------------------------------------------------------------- /src/hooks/Trades.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/hooks/Trades.ts -------------------------------------------------------------------------------- /src/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/hooks/index.ts -------------------------------------------------------------------------------- /src/hooks/useApproveCallback.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/hooks/useApproveCallback.ts -------------------------------------------------------------------------------- /src/hooks/useContract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/hooks/useContract.ts -------------------------------------------------------------------------------- /src/hooks/useCopyClipboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/hooks/useCopyClipboard.ts -------------------------------------------------------------------------------- /src/hooks/useDebounce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/hooks/useDebounce.ts -------------------------------------------------------------------------------- /src/hooks/useENS.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/hooks/useENS.ts -------------------------------------------------------------------------------- /src/hooks/useENSAddress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/hooks/useENSAddress.ts -------------------------------------------------------------------------------- /src/hooks/useENSContentHash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/hooks/useENSContentHash.ts -------------------------------------------------------------------------------- /src/hooks/useENSName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/hooks/useENSName.ts -------------------------------------------------------------------------------- /src/hooks/useFetchListCallback.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/hooks/useFetchListCallback.ts -------------------------------------------------------------------------------- /src/hooks/useHttpLocations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/hooks/useHttpLocations.ts -------------------------------------------------------------------------------- /src/hooks/useInterval.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/hooks/useInterval.ts -------------------------------------------------------------------------------- /src/hooks/useIsWindowVisible.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/hooks/useIsWindowVisible.ts -------------------------------------------------------------------------------- /src/hooks/useLast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/hooks/useLast.ts -------------------------------------------------------------------------------- /src/hooks/useOnClickOutside.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/hooks/useOnClickOutside.tsx -------------------------------------------------------------------------------- /src/hooks/useParsedQueryString.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/hooks/useParsedQueryString.ts -------------------------------------------------------------------------------- /src/hooks/usePrevious.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/hooks/usePrevious.ts -------------------------------------------------------------------------------- /src/hooks/useSocksBalance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/hooks/useSocksBalance.ts -------------------------------------------------------------------------------- /src/hooks/useSwapCallback.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/hooks/useSwapCallback.ts -------------------------------------------------------------------------------- /src/hooks/useToggle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/hooks/useToggle.ts -------------------------------------------------------------------------------- /src/hooks/useToggledVersion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/hooks/useToggledVersion.ts -------------------------------------------------------------------------------- /src/hooks/useWrapCallback.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/hooks/useWrapCallback.ts -------------------------------------------------------------------------------- /src/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/i18n.ts -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/pages/AddLiquidity/ConfirmAddModalBottom.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/pages/AddLiquidity/ConfirmAddModalBottom.tsx -------------------------------------------------------------------------------- /src/pages/AddLiquidity/PoolPriceBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/pages/AddLiquidity/PoolPriceBar.tsx -------------------------------------------------------------------------------- /src/pages/AddLiquidity/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/pages/AddLiquidity/index.tsx -------------------------------------------------------------------------------- /src/pages/AddLiquidity/redirects.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/pages/AddLiquidity/redirects.tsx -------------------------------------------------------------------------------- /src/pages/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/pages/App.tsx -------------------------------------------------------------------------------- /src/pages/AppBody.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/pages/AppBody.tsx -------------------------------------------------------------------------------- /src/pages/MigrateV1/EmptyState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/pages/MigrateV1/EmptyState.tsx -------------------------------------------------------------------------------- /src/pages/MigrateV1/MigrateV1Exchange.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/pages/MigrateV1/MigrateV1Exchange.tsx -------------------------------------------------------------------------------- /src/pages/MigrateV1/RemoveV1Exchange.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/pages/MigrateV1/RemoveV1Exchange.tsx -------------------------------------------------------------------------------- /src/pages/MigrateV1/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/pages/MigrateV1/index.tsx -------------------------------------------------------------------------------- /src/pages/Pool/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/pages/Pool/index.tsx -------------------------------------------------------------------------------- /src/pages/Pool/styleds.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/pages/Pool/styleds.tsx -------------------------------------------------------------------------------- /src/pages/PoolFinder/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/pages/PoolFinder/index.tsx -------------------------------------------------------------------------------- /src/pages/RemoveLiquidity/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/pages/RemoveLiquidity/index.tsx -------------------------------------------------------------------------------- /src/pages/RemoveLiquidity/redirects.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/pages/RemoveLiquidity/redirects.tsx -------------------------------------------------------------------------------- /src/pages/Swap/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/pages/Swap/index.tsx -------------------------------------------------------------------------------- /src/pages/Swap/redirects.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/pages/Swap/redirects.tsx -------------------------------------------------------------------------------- /src/react-app-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/react-app-env.d.ts -------------------------------------------------------------------------------- /src/state/application/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/state/application/actions.ts -------------------------------------------------------------------------------- /src/state/application/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/state/application/hooks.ts -------------------------------------------------------------------------------- /src/state/application/reducer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/state/application/reducer.test.ts -------------------------------------------------------------------------------- /src/state/application/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/state/application/reducer.ts -------------------------------------------------------------------------------- /src/state/application/updater.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/state/application/updater.ts -------------------------------------------------------------------------------- /src/state/burn/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/state/burn/actions.ts -------------------------------------------------------------------------------- /src/state/burn/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/state/burn/hooks.ts -------------------------------------------------------------------------------- /src/state/burn/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/state/burn/reducer.ts -------------------------------------------------------------------------------- /src/state/global/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/state/global/actions.ts -------------------------------------------------------------------------------- /src/state/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/state/index.ts -------------------------------------------------------------------------------- /src/state/lists/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/state/lists/actions.ts -------------------------------------------------------------------------------- /src/state/lists/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/state/lists/hooks.ts -------------------------------------------------------------------------------- /src/state/lists/reducer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/state/lists/reducer.test.ts -------------------------------------------------------------------------------- /src/state/lists/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/state/lists/reducer.ts -------------------------------------------------------------------------------- /src/state/lists/updater.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/state/lists/updater.ts -------------------------------------------------------------------------------- /src/state/mint/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/state/mint/actions.ts -------------------------------------------------------------------------------- /src/state/mint/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/state/mint/hooks.ts -------------------------------------------------------------------------------- /src/state/mint/reducer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/state/mint/reducer.test.ts -------------------------------------------------------------------------------- /src/state/mint/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/state/mint/reducer.ts -------------------------------------------------------------------------------- /src/state/multicall/actions.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/state/multicall/actions.test.ts -------------------------------------------------------------------------------- /src/state/multicall/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/state/multicall/actions.ts -------------------------------------------------------------------------------- /src/state/multicall/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/state/multicall/hooks.ts -------------------------------------------------------------------------------- /src/state/multicall/reducer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/state/multicall/reducer.test.ts -------------------------------------------------------------------------------- /src/state/multicall/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/state/multicall/reducer.ts -------------------------------------------------------------------------------- /src/state/multicall/updater.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/state/multicall/updater.test.ts -------------------------------------------------------------------------------- /src/state/multicall/updater.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/state/multicall/updater.tsx -------------------------------------------------------------------------------- /src/state/swap/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/state/swap/actions.ts -------------------------------------------------------------------------------- /src/state/swap/hooks.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/state/swap/hooks.test.ts -------------------------------------------------------------------------------- /src/state/swap/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/state/swap/hooks.ts -------------------------------------------------------------------------------- /src/state/swap/reducer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/state/swap/reducer.test.ts -------------------------------------------------------------------------------- /src/state/swap/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/state/swap/reducer.ts -------------------------------------------------------------------------------- /src/state/transactions/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/state/transactions/actions.ts -------------------------------------------------------------------------------- /src/state/transactions/hooks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/state/transactions/hooks.tsx -------------------------------------------------------------------------------- /src/state/transactions/reducer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/state/transactions/reducer.test.ts -------------------------------------------------------------------------------- /src/state/transactions/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/state/transactions/reducer.ts -------------------------------------------------------------------------------- /src/state/transactions/updater.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/state/transactions/updater.test.ts -------------------------------------------------------------------------------- /src/state/transactions/updater.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/state/transactions/updater.tsx -------------------------------------------------------------------------------- /src/state/user/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/state/user/actions.ts -------------------------------------------------------------------------------- /src/state/user/hooks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/state/user/hooks.tsx -------------------------------------------------------------------------------- /src/state/user/reducer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/state/user/reducer.test.ts -------------------------------------------------------------------------------- /src/state/user/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/state/user/reducer.ts -------------------------------------------------------------------------------- /src/state/user/updater.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/state/user/updater.tsx -------------------------------------------------------------------------------- /src/state/wallet/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/state/wallet/hooks.ts -------------------------------------------------------------------------------- /src/theme/DarkModeQueryParamReader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/theme/DarkModeQueryParamReader.tsx -------------------------------------------------------------------------------- /src/theme/components.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/theme/components.tsx -------------------------------------------------------------------------------- /src/theme/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/theme/index.tsx -------------------------------------------------------------------------------- /src/theme/styled.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/theme/styled.d.ts -------------------------------------------------------------------------------- /src/utils/addTokenToMetamask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/utils/addTokenToMetamask.ts -------------------------------------------------------------------------------- /src/utils/chunkArray.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/utils/chunkArray.test.ts -------------------------------------------------------------------------------- /src/utils/chunkArray.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/utils/chunkArray.ts -------------------------------------------------------------------------------- /src/utils/contenthashToUri.test.skip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/utils/contenthashToUri.test.skip.ts -------------------------------------------------------------------------------- /src/utils/contenthashToUri.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/utils/contenthashToUri.ts -------------------------------------------------------------------------------- /src/utils/currencyId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/utils/currencyId.ts -------------------------------------------------------------------------------- /src/utils/getLibrary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/utils/getLibrary.ts -------------------------------------------------------------------------------- /src/utils/getTokenList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/utils/getTokenList.ts -------------------------------------------------------------------------------- /src/utils/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/utils/index.test.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /src/utils/isZero.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/utils/isZero.ts -------------------------------------------------------------------------------- /src/utils/listVersionLabel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/utils/listVersionLabel.ts -------------------------------------------------------------------------------- /src/utils/maxAmountSpend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/utils/maxAmountSpend.ts -------------------------------------------------------------------------------- /src/utils/parseENSAddress.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/utils/parseENSAddress.test.ts -------------------------------------------------------------------------------- /src/utils/parseENSAddress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/utils/parseENSAddress.ts -------------------------------------------------------------------------------- /src/utils/prices.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/utils/prices.test.ts -------------------------------------------------------------------------------- /src/utils/prices.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/utils/prices.ts -------------------------------------------------------------------------------- /src/utils/resolveENSContentHash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/utils/resolveENSContentHash.ts -------------------------------------------------------------------------------- /src/utils/retry.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/utils/retry.test.ts -------------------------------------------------------------------------------- /src/utils/retry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/utils/retry.ts -------------------------------------------------------------------------------- /src/utils/setupNetwork.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/utils/setupNetwork.ts -------------------------------------------------------------------------------- /src/utils/uriToHttp.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/utils/uriToHttp.test.ts -------------------------------------------------------------------------------- /src/utils/uriToHttp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/utils/uriToHttp.ts -------------------------------------------------------------------------------- /src/utils/useDebouncedChangeHandler.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/utils/useDebouncedChangeHandler.tsx -------------------------------------------------------------------------------- /src/utils/useUSDCPrice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/utils/useUSDCPrice.ts -------------------------------------------------------------------------------- /src/utils/v1SwapArgument.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/utils/v1SwapArgument.test.ts -------------------------------------------------------------------------------- /src/utils/v1SwapArguments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/utils/v1SwapArguments.ts -------------------------------------------------------------------------------- /src/utils/wrappedCurrency.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/src/utils/wrappedCurrency.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Hive/uniswap-interface/HEAD/yarn.lock --------------------------------------------------------------------------------