Full Code of Uniswap/v3-info for AI

master 43e5b31f1a8a cached
207 files
1.5 MB
369.3k tokens
440 symbols
1 requests
Download .txt
Showing preview only (1,653K chars total). Download the full file or copy to clipboard to get everything.
Repository: Uniswap/v3-info
Branch: master
Commit: 43e5b31f1a8a
Files: 207
Total size: 1.5 MB

Directory structure:
gitextract_o05rca_m/

├── .eslintrc.json
├── .github/
│   ├── ISSUE_TEMPLATE/
│   │   ├── bug-report.md
│   │   ├── config.yml
│   │   └── feature-request.md
│   └── workflows/
│       └── semgrep.yml
├── .gitignore
├── .nvmrc
├── .prettierrc
├── .yarnrc
├── LICENSE
├── README.md
├── cypress.json
├── package.json
├── public/
│   ├── 451.html
│   ├── 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
├── schema.json
├── src/
│   ├── apollo/
│   │   └── client.ts
│   ├── components/
│   │   ├── BarChart/
│   │   │   ├── alt.tsx
│   │   │   └── index.tsx
│   │   ├── Button/
│   │   │   └── index.tsx
│   │   ├── CandleChart/
│   │   │   └── index.tsx
│   │   ├── Card/
│   │   │   └── index.tsx
│   │   ├── Column/
│   │   │   └── index.tsx
│   │   ├── Confetti/
│   │   │   └── index.tsx
│   │   ├── CurrencyLogo/
│   │   │   └── index.tsx
│   │   ├── DensityChart/
│   │   │   ├── CurrentPriceLabel.tsx
│   │   │   ├── CustomToolTip.tsx
│   │   │   └── index.tsx
│   │   ├── DoubleLogo/
│   │   │   └── index.tsx
│   │   ├── FormattedCurrencyAmount/
│   │   │   └── index.tsx
│   │   ├── Header/
│   │   │   ├── Polling.tsx
│   │   │   ├── TopBar.tsx
│   │   │   ├── URLWarning.tsx
│   │   │   └── index.tsx
│   │   ├── HoverInlineText/
│   │   │   └── index.tsx
│   │   ├── LineChart/
│   │   │   ├── alt.tsx
│   │   │   └── index.tsx
│   │   ├── ListLogo/
│   │   │   └── index.tsx
│   │   ├── Loader/
│   │   │   └── index.tsx
│   │   ├── Logo/
│   │   │   └── index.tsx
│   │   ├── Menu/
│   │   │   ├── NetworkDropdown.tsx
│   │   │   └── index.tsx
│   │   ├── Modal/
│   │   │   └── index.tsx
│   │   ├── NumericalInput/
│   │   │   └── index.tsx
│   │   ├── Percent/
│   │   │   └── index.tsx
│   │   ├── Popover/
│   │   │   └── index.tsx
│   │   ├── Popups/
│   │   │   ├── ListUpdatePopup.tsx
│   │   │   ├── PopupItem.tsx
│   │   │   └── index.tsx
│   │   ├── QuestionHelper/
│   │   │   └── index.tsx
│   │   ├── Row/
│   │   │   └── index.tsx
│   │   ├── Search/
│   │   │   └── index.tsx
│   │   ├── Text/
│   │   │   └── index.ts
│   │   ├── Toggle/
│   │   │   ├── ListToggle.tsx
│   │   │   ├── MultiToggle.tsx
│   │   │   └── index.tsx
│   │   ├── Tooltip/
│   │   │   └── index.tsx
│   │   ├── TransactionsTable/
│   │   │   └── index.tsx
│   │   ├── pools/
│   │   │   ├── PoolTable.tsx
│   │   │   └── TopPoolMovers.tsx
│   │   ├── shared/
│   │   │   └── index.tsx
│   │   └── tokens/
│   │       ├── TokenTable.tsx
│   │       └── TopTokenMovers.tsx
│   ├── constants/
│   │   ├── abis/
│   │   │   ├── argent-wallet-detector.json
│   │   │   ├── argent-wallet-detector.ts
│   │   │   ├── ens-public-resolver.json
│   │   │   ├── ens-registrar.json
│   │   │   ├── erc20.json
│   │   │   ├── erc20.ts
│   │   │   ├── erc20_bytes32.json
│   │   │   ├── migrator.json
│   │   │   ├── migrator.ts
│   │   │   ├── staking-rewards.ts
│   │   │   ├── unisocks.json
│   │   │   └── weth.json
│   │   ├── chains.ts
│   │   ├── index.ts
│   │   ├── intervals.ts
│   │   ├── lists.ts
│   │   ├── multicall/
│   │   │   ├── abi.json
│   │   │   └── index.ts
│   │   ├── networks.ts
│   │   └── tokenLists/
│   │       └── uniswap-v2-unsupported.tokenlist.json
│   ├── data/
│   │   ├── application/
│   │   │   └── index.ts
│   │   ├── combined/
│   │   │   └── pools.ts
│   │   ├── pools/
│   │   │   ├── chartData.ts
│   │   │   ├── poolData.ts
│   │   │   ├── tickData.ts
│   │   │   ├── topPools.ts
│   │   │   └── transactions.ts
│   │   ├── protocol/
│   │   │   ├── chart.ts
│   │   │   ├── derived.ts
│   │   │   ├── overview.ts
│   │   │   └── transactions.ts
│   │   ├── search/
│   │   │   └── index.ts
│   │   └── tokens/
│   │       ├── chartData.ts
│   │       ├── poolsForToken.ts
│   │       ├── priceData.ts
│   │       ├── tokenData.ts
│   │       ├── topTokens.ts
│   │       └── transactions.ts
│   ├── hooks/
│   │   ├── chart.ts
│   │   ├── useAppDispatch.ts
│   │   ├── useBlocksFromTimestamps.ts
│   │   ├── useCMCLink.ts
│   │   ├── useColor.ts
│   │   ├── useCopyClipboard.ts
│   │   ├── useDebounce.ts
│   │   ├── useEthPrices.ts
│   │   ├── useFetchListCallback.ts
│   │   ├── useHttpLocations.ts
│   │   ├── useInterval.ts
│   │   ├── useIsWindowVisible.ts
│   │   ├── useLast.ts
│   │   ├── useOnClickOutside.tsx
│   │   ├── useParsedQueryString.ts
│   │   ├── usePrevious.ts
│   │   ├── useTheme.ts
│   │   ├── useToggle.ts
│   │   ├── useToggledVersion.ts
│   │   └── useWindowSize.ts
│   ├── i18n.ts
│   ├── index.tsx
│   ├── pages/
│   │   ├── App.tsx
│   │   ├── Home/
│   │   │   └── index.tsx
│   │   ├── Pool/
│   │   │   ├── PoolPage.tsx
│   │   │   └── PoolsOverview.tsx
│   │   ├── Protocol/
│   │   │   └── index.tsx
│   │   ├── Token/
│   │   │   ├── TokenPage.tsx
│   │   │   ├── TokensOverview.tsx
│   │   │   └── redirects.tsx
│   │   ├── Wallets/
│   │   │   └── index.tsx
│   │   └── styled.ts
│   ├── react-app-env.d.ts
│   ├── state/
│   │   ├── application/
│   │   │   ├── actions.ts
│   │   │   ├── hooks.ts
│   │   │   ├── reducer.ts
│   │   │   └── updater.ts
│   │   ├── global/
│   │   │   └── actions.ts
│   │   ├── index.ts
│   │   ├── lists/
│   │   │   ├── actions.ts
│   │   │   ├── hooks.ts
│   │   │   ├── reducer.test.ts
│   │   │   ├── reducer.ts
│   │   │   ├── updater.ts
│   │   │   └── wrappedTokenInfo.ts
│   │   ├── pools/
│   │   │   ├── actions.ts
│   │   │   ├── hooks.ts
│   │   │   ├── reducer.ts
│   │   │   └── updater.ts
│   │   ├── protocol/
│   │   │   ├── actions.ts
│   │   │   ├── hooks.ts
│   │   │   ├── reducer.ts
│   │   │   └── updater.ts
│   │   ├── tokens/
│   │   │   ├── actions.ts
│   │   │   ├── hooks.ts
│   │   │   ├── reducer.ts
│   │   │   └── updater.ts
│   │   └── user/
│   │       ├── actions.ts
│   │       ├── hooks.tsx
│   │       ├── reducer.test.ts
│   │       ├── reducer.ts
│   │       └── updater.tsx
│   ├── theme/
│   │   ├── DarkModeQueryParamReader.tsx
│   │   ├── components.tsx
│   │   ├── index.tsx
│   │   ├── rebass.d.ts
│   │   └── styled.d.ts
│   ├── types/
│   │   └── index.ts
│   └── utils/
│       ├── chunkArray.test.ts
│       ├── chunkArray.ts
│       ├── contenthashToUri.test.skip.ts
│       ├── contenthashToUri.ts
│       ├── currencyId.ts
│       ├── data.ts
│       ├── date.ts
│       ├── getLibrary.ts
│       ├── getTokenList.ts
│       ├── index.ts
│       ├── isZero.ts
│       ├── listSort.ts
│       ├── listVersionLabel.ts
│       ├── networkPrefix.ts
│       ├── numbers.ts
│       ├── parseENSAddress.test.ts
│       ├── parseENSAddress.ts
│       ├── queries.ts
│       ├── resolveENSContentHash.ts
│       ├── retry.test.ts
│       ├── retry.ts
│       ├── tokens.ts
│       ├── uriToHttp.test.ts
│       ├── uriToHttp.ts
│       └── useDebouncedChangeHandler.tsx
└── tsconfig.json

================================================
FILE CONTENTS
================================================

================================================
FILE: .eslintrc.json
================================================
{
  "parser": "@typescript-eslint/parser",
  "parserOptions": {
    "ecmaVersion": 2020,
    "sourceType": "module",
    "ecmaFeatures": {
      // Allows for the parsing of JSX
      "jsx": true
    }
  },
  "ignorePatterns": ["node_modules/**/*"],
  "settings": {
    "react": {
      "version": "detect"
    }
  },
  "extends": [
    "plugin:react/recommended",
    "plugin:@typescript-eslint/recommended",
    "plugin:react-hooks/recommended",
    "plugin:prettier/recommended"
  ],
  "rules": {
    "@typescript-eslint/explicit-function-return-type": "off",
    "prettier/prettier": "error",
    "@typescript-eslint/no-explicit-any": "off",
    "@typescript-eslint/ban-ts-comment": "off",
    "@typescript-eslint/ban-ts-ignore": "off"
  }
}


================================================
FILE: .github/ISSUE_TEMPLATE/bug-report.md
================================================
---
name: Bug Report
about: Describe an issue in the Uniswap Interface
title: ''
labels: bug
assignees: ''
---

**Bug Description**
A clear and concise description of the bug.

**Steps to Reproduce**

1. Go to ...
2. Click on ...
   ...

**Expected Behavior**
A clear and concise description of what you expected to happen.

**Additional Context**
Add any other context about the problem here (screenshots, whether the bug only occurs only in certain mobile/desktop/browser environments, etc.)


================================================
FILE: .github/ISSUE_TEMPLATE/config.yml
================================================
blank_issues_enabled: false
contact_links:
  - name: Support
    url: https://discord.gg/FCfyBSbCU5
    about: Please ask and answer questions here
  - name: List a token
    url: https://github.com/Uniswap/default-token-list#adding-a-token
    about: Any requests to add a token to Uniswap should go here


================================================
FILE: .github/ISSUE_TEMPLATE/feature-request.md
================================================
---
name: Feature Request
about: Suggest an idea for improving the UX of the Uniswap Interface
title: ''
labels: 'improvement'
assignees: ''
---

**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

**Describe the solution you'd like**
A clear and concise description of what you want to happen.

**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.

**Additional context**
Add any other context or screenshots about the feature request here.


================================================
FILE: .github/workflows/semgrep.yml
================================================
name: Semgrep
on:
  workflow_dispatch: {}
  pull_request: {}
  push:
    branches:
      - main
      - master
  schedule:
    # random HH:MM to avoid a load spike on GitHub Actions at 00:00
    - cron: '35 11 * * *'
jobs:
  semgrep:
    name: semgrep/ci
    runs-on: ubuntu-20.04
    env:
      SEMGREP_APP_TOKEN: ${{ secrets.SEMGREP_APP_TOKEN }}
    container:
      image: returntocorp/semgrep
    if: (github.actor != 'dependabot[bot]')
    steps:
      - uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744
      - run: semgrep ci


================================================
FILE: .gitignore
================================================
node_modules
.DS_Store
build
.vscode/


================================================
FILE: .nvmrc
================================================
v18


================================================
FILE: .prettierrc
================================================
{
  "semi": false,
  "singleQuote": true,
  "printWidth": 120,
  "endOfLine": "auto"
}


================================================
FILE: .yarnrc
================================================
ignore-scripts true


================================================
FILE: LICENSE
================================================
                    GNU GENERAL PUBLIC LICENSE
                       Version 3, 29 June 2007

 Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
 Everyone is permitted to copy and distribute verbatim copies
 of this license document, but changing it is not allowed.

                            Preamble

  The GNU General Public License is a free, copyleft license for
software and other kinds of works.

  The licenses for most software and other practical works are designed
to take away your freedom to share and change the works.  By contrast,
the GNU General Public License is intended to guarantee your freedom to
share and change all versions of a program--to make sure it remains free
software for all its users.  We, the Free Software Foundation, use the
GNU General Public License for most of our software; it applies also to
any other work released this way by its authors.  You can apply it to
your programs, too.

  When we speak of free software, we are referring to freedom, not
price.  Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
them if you wish), that you receive source code or can get it if you
want it, that you can change the software or use pieces of it in new
free programs, and that you know you can do these things.

  To protect your rights, we need to prevent others from denying you
these rights or asking you to surrender the rights.  Therefore, you have
certain responsibilities if you distribute copies of the software, or if
you modify it: responsibilities to respect the freedom of others.

  For example, if you distribute copies of such a program, whether
gratis or for a fee, you must pass on to the recipients the same
freedoms that you received.  You must make sure that they, too, receive
or can get the source code.  And you must show them these terms so they
know their rights.

  Developers that use the GNU GPL protect your rights with two steps:
(1) assert copyright on the software, and (2) offer you this License
giving you legal permission to copy, distribute and/or modify it.

  For the developers' and authors' protection, the GPL clearly explains
that there is no warranty for this free software.  For both users' and
authors' sake, the GPL requires that modified versions be marked as
changed, so that their problems will not be attributed erroneously to
authors of previous versions.

  Some devices are designed to deny users access to install or run
modified versions of the software inside them, although the manufacturer
can do so.  This is fundamentally incompatible with the aim of
protecting users' freedom to change the software.  The systematic
pattern of such abuse occurs in the area of products for individuals to
use, which is precisely where it is most unacceptable.  Therefore, we
have designed this version of the GPL to prohibit the practice for those
products.  If such problems arise substantially in other domains, we
stand ready to extend this provision to those domains in future versions
of the GPL, as needed to protect the freedom of users.

  Finally, every program is threatened constantly by software patents.
States should not allow patents to restrict development and use of
software on general-purpose computers, but in those that do, we wish to
avoid the special danger that patents applied to a free program could
make it effectively proprietary.  To prevent this, the GPL assures that
patents cannot be used to render the program non-free.

  The precise terms and conditions for copying, distribution and
modification follow.

                       TERMS AND CONDITIONS

  0. Definitions.

  "This License" refers to version 3 of the GNU General Public License.

  "Copyright" also means copyright-like laws that apply to other kinds of
works, such as semiconductor masks.

  "The Program" refers to any copyrightable work licensed under this
License.  Each licensee is addressed as "you".  "Licensees" and
"recipients" may be individuals or organizations.

  To "modify" a work means to copy from or adapt all or part of the work
in a fashion requiring copyright permission, other than the making of an
exact copy.  The resulting work is called a "modified version" of the
earlier work or a work "based on" the earlier work.

  A "covered work" means either the unmodified Program or a work based
on the Program.

  To "propagate" a work means to do anything with it that, without
permission, would make you directly or secondarily liable for
infringement under applicable copyright law, except executing it on a
computer or modifying a private copy.  Propagation includes copying,
distribution (with or without modification), making available to the
public, and in some countries other activities as well.

  To "convey" a work means any kind of propagation that enables other
parties to make or receive copies.  Mere interaction with a user through
a computer network, with no transfer of a copy, is not conveying.

  An interactive user interface displays "Appropriate Legal Notices"
to the extent that it includes a convenient and prominently visible
feature that (1) displays an appropriate copyright notice, and (2)
tells the user that there is no warranty for the work (except to the
extent that warranties are provided), that licensees may convey the
work under this License, and how to view a copy of this License.  If
the interface presents a list of user commands or options, such as a
menu, a prominent item in the list meets this criterion.

  1. Source Code.

  The "source code" for a work means the preferred form of the work
for making modifications to it.  "Object code" means any non-source
form of a work.

  A "Standard Interface" means an interface that either is an official
standard defined by a recognized standards body, or, in the case of
interfaces specified for a particular programming language, one that
is widely used among developers working in that language.

  The "System Libraries" of an executable work include anything, other
than the work as a whole, that (a) is included in the normal form of
packaging a Major Component, but which is not part of that Major
Component, and (b) serves only to enable use of the work with that
Major Component, or to implement a Standard Interface for which an
implementation is available to the public in source code form.  A
"Major Component", in this context, means a major essential component
(kernel, window system, and so on) of the specific operating system
(if any) on which the executable work runs, or a compiler used to
produce the work, or an object code interpreter used to run it.

  The "Corresponding Source" for a work in object code form means all
the source code needed to generate, install, and (for an executable
work) run the object code and to modify the work, including scripts to
control those activities.  However, it does not include the work's
System Libraries, or general-purpose tools or generally available free
programs which are used unmodified in performing those activities but
which are not part of the work.  For example, Corresponding Source
includes interface definition files associated with source files for
the work, and the source code for shared libraries and dynamically
linked subprograms that the work is specifically designed to require,
such as by intimate data communication or control flow between those
subprograms and other parts of the work.

  The Corresponding Source need not include anything that users
can regenerate automatically from other parts of the Corresponding
Source.

  The Corresponding Source for a work in source code form is that
same work.

  2. Basic Permissions.

  All rights granted under this License are granted for the term of
copyright on the Program, and are irrevocable provided the stated
conditions are met.  This License explicitly affirms your unlimited
permission to run the unmodified Program.  The output from running a
covered work is covered by this License only if the output, given its
content, constitutes a covered work.  This License acknowledges your
rights of fair use or other equivalent, as provided by copyright law.

  You may make, run and propagate covered works that you do not
convey, without conditions so long as your license otherwise remains
in force.  You may convey covered works to others for the sole purpose
of having them make modifications exclusively for you, or provide you
with facilities for running those works, provided that you comply with
the terms of this License in conveying all material for which you do
not control copyright.  Those thus making or running the covered works
for you must do so exclusively on your behalf, under your direction
and control, on terms that prohibit them from making any copies of
your copyrighted material outside their relationship with you.

  Conveying under any other circumstances is permitted solely under
the conditions stated below.  Sublicensing is not allowed; section 10
makes it unnecessary.

  3. Protecting Users' Legal Rights From Anti-Circumvention Law.

  No covered work shall be deemed part of an effective technological
measure under any applicable law fulfilling obligations under article
11 of the WIPO copyright treaty adopted on 20 December 1996, or
similar laws prohibiting or restricting circumvention of such
measures.

  When you convey a covered work, you waive any legal power to forbid
circumvention of technological measures to the extent such circumvention
is effected by exercising rights under this License with respect to
the covered work, and you disclaim any intention to limit operation or
modification of the work as a means of enforcing, against the work's
users, your or third parties' legal rights to forbid circumvention of
technological measures.

  4. Conveying Verbatim Copies.

  You may convey verbatim copies of the Program's source code as you
receive it, in any medium, provided that you conspicuously and
appropriately publish on each copy an appropriate copyright notice;
keep intact all notices stating that this License and any
non-permissive terms added in accord with section 7 apply to the code;
keep intact all notices of the absence of any warranty; and give all
recipients a copy of this License along with the Program.

  You may charge any price or no price for each copy that you convey,
and you may offer support or warranty protection for a fee.

  5. Conveying Modified Source Versions.

  You may convey a work based on the Program, or the modifications to
produce it from the Program, in the form of source code under the
terms of section 4, provided that you also meet all of these conditions:

    a) The work must carry prominent notices stating that you modified
    it, and giving a relevant date.

    b) The work must carry prominent notices stating that it is
    released under this License and any conditions added under section
    7.  This requirement modifies the requirement in section 4 to
    "keep intact all notices".

    c) You must license the entire work, as a whole, under this
    License to anyone who comes into possession of a copy.  This
    License will therefore apply, along with any applicable section 7
    additional terms, to the whole of the work, and all its parts,
    regardless of how they are packaged.  This License gives no
    permission to license the work in any other way, but it does not
    invalidate such permission if you have separately received it.

    d) If the work has interactive user interfaces, each must display
    Appropriate Legal Notices; however, if the Program has interactive
    interfaces that do not display Appropriate Legal Notices, your
    work need not make them do so.

  A compilation of a covered work with other separate and independent
works, which are not by their nature extensions of the covered work,
and which are not combined with it such as to form a larger program,
in or on a volume of a storage or distribution medium, is called an
"aggregate" if the compilation and its resulting copyright are not
used to limit the access or legal rights of the compilation's users
beyond what the individual works permit.  Inclusion of a covered work
in an aggregate does not cause this License to apply to the other
parts of the aggregate.

  6. Conveying Non-Source Forms.

  You may convey a covered work in object code form under the terms
of sections 4 and 5, provided that you also convey the
machine-readable Corresponding Source under the terms of this License,
in one of these ways:

    a) Convey the object code in, or embodied in, a physical product
    (including a physical distribution medium), accompanied by the
    Corresponding Source fixed on a durable physical medium
    customarily used for software interchange.

    b) Convey the object code in, or embodied in, a physical product
    (including a physical distribution medium), accompanied by a
    written offer, valid for at least three years and valid for as
    long as you offer spare parts or customer support for that product
    model, to give anyone who possesses the object code either (1) a
    copy of the Corresponding Source for all the software in the
    product that is covered by this License, on a durable physical
    medium customarily used for software interchange, for a price no
    more than your reasonable cost of physically performing this
    conveying of source, or (2) access to copy the
    Corresponding Source from a network server at no charge.

    c) Convey individual copies of the object code with a copy of the
    written offer to provide the Corresponding Source.  This
    alternative is allowed only occasionally and noncommercially, and
    only if you received the object code with such an offer, in accord
    with subsection 6b.

    d) Convey the object code by offering access from a designated
    place (gratis or for a charge), and offer equivalent access to the
    Corresponding Source in the same way through the same place at no
    further charge.  You need not require recipients to copy the
    Corresponding Source along with the object code.  If the place to
    copy the object code is a network server, the Corresponding Source
    may be on a different server (operated by you or a third party)
    that supports equivalent copying facilities, provided you maintain
    clear directions next to the object code saying where to find the
    Corresponding Source.  Regardless of what server hosts the
    Corresponding Source, you remain obligated to ensure that it is
    available for as long as needed to satisfy these requirements.

    e) Convey the object code using peer-to-peer transmission, provided
    you inform other peers where the object code and Corresponding
    Source of the work are being offered to the general public at no
    charge under subsection 6d.

  A separable portion of the object code, whose source code is excluded
from the Corresponding Source as a System Library, need not be
included in conveying the object code work.

  A "User Product" is either (1) a "consumer product", which means any
tangible personal property which is normally used for personal, family,
or household purposes, or (2) anything designed or sold for incorporation
into a dwelling.  In determining whether a product is a consumer product,
doubtful cases shall be resolved in favor of coverage.  For a particular
product received by a particular user, "normally used" refers to a
typical or common use of that class of product, regardless of the status
of the particular user or of the way in which the particular user
actually uses, or expects or is expected to use, the product.  A product
is a consumer product regardless of whether the product has substantial
commercial, industrial or non-consumer uses, unless such uses represent
the only significant mode of use of the product.

  "Installation Information" for a User Product means any methods,
procedures, authorization keys, or other information required to install
and execute modified versions of a covered work in that User Product from
a modified version of its Corresponding Source.  The information must
suffice to ensure that the continued functioning of the modified object
code is in no case prevented or interfered with solely because
modification has been made.

  If you convey an object code work under this section in, or with, or
specifically for use in, a User Product, and the conveying occurs as
part of a transaction in which the right of possession and use of the
User Product is transferred to the recipient in perpetuity or for a
fixed term (regardless of how the transaction is characterized), the
Corresponding Source conveyed under this section must be accompanied
by the Installation Information.  But this requirement does not apply
if neither you nor any third party retains the ability to install
modified object code on the User Product (for example, the work has
been installed in ROM).

  The requirement to provide Installation Information does not include a
requirement to continue to provide support service, warranty, or updates
for a work that has been modified or installed by the recipient, or for
the User Product in which it has been modified or installed.  Access to a
network may be denied when the modification itself materially and
adversely affects the operation of the network or violates the rules and
protocols for communication across the network.

  Corresponding Source conveyed, and Installation Information provided,
in accord with this section must be in a format that is publicly
documented (and with an implementation available to the public in
source code form), and must require no special password or key for
unpacking, reading or copying.

  7. Additional Terms.

  "Additional permissions" are terms that supplement the terms of this
License by making exceptions from one or more of its conditions.
Additional permissions that are applicable to the entire Program shall
be treated as though they were included in this License, to the extent
that they are valid under applicable law.  If additional permissions
apply only to part of the Program, that part may be used separately
under those permissions, but the entire Program remains governed by
this License without regard to the additional permissions.

  When you convey a copy of a covered work, you may at your option
remove any additional permissions from that copy, or from any part of
it.  (Additional permissions may be written to require their own
removal in certain cases when you modify the work.)  You may place
additional permissions on material, added by you to a covered work,
for which you have or can give appropriate copyright permission.

  Notwithstanding any other provision of this License, for material you
add to a covered work, you may (if authorized by the copyright holders of
that material) supplement the terms of this License with terms:

    a) Disclaiming warranty or limiting liability differently from the
    terms of sections 15 and 16 of this License; or

    b) Requiring preservation of specified reasonable legal notices or
    author attributions in that material or in the Appropriate Legal
    Notices displayed by works containing it; or

    c) Prohibiting misrepresentation of the origin of that material, or
    requiring that modified versions of such material be marked in
    reasonable ways as different from the original version; or

    d) Limiting the use for publicity purposes of names of licensors or
    authors of the material; or

    e) Declining to grant rights under trademark law for use of some
    trade names, trademarks, or service marks; or

    f) Requiring indemnification of licensors and authors of that
    material by anyone who conveys the material (or modified versions of
    it) with contractual assumptions of liability to the recipient, for
    any liability that these contractual assumptions directly impose on
    those licensors and authors.

  All other non-permissive additional terms are considered "further
restrictions" within the meaning of section 10.  If the Program as you
received it, or any part of it, contains a notice stating that it is
governed by this License along with a term that is a further
restriction, you may remove that term.  If a license document contains
a further restriction but permits relicensing or conveying under this
License, you may add to a covered work material governed by the terms
of that license document, provided that the further restriction does
not survive such relicensing or conveying.

  If you add terms to a covered work in accord with this section, you
must place, in the relevant source files, a statement of the
additional terms that apply to those files, or a notice indicating
where to find the applicable terms.

  Additional terms, permissive or non-permissive, may be stated in the
form of a separately written license, or stated as exceptions;
the above requirements apply either way.

  8. Termination.

  You may not propagate or modify a covered work except as expressly
provided under this License.  Any attempt otherwise to propagate or
modify it is void, and will automatically terminate your rights under
this License (including any patent licenses granted under the third
paragraph of section 11).

  However, if you cease all violation of this License, then your
license from a particular copyright holder is reinstated (a)
provisionally, unless and until the copyright holder explicitly and
finally terminates your license, and (b) permanently, if the copyright
holder fails to notify you of the violation by some reasonable means
prior to 60 days after the cessation.

  Moreover, your license from a particular copyright holder is
reinstated permanently if the copyright holder notifies you of the
violation by some reasonable means, this is the first time you have
received notice of violation of this License (for any work) from that
copyright holder, and you cure the violation prior to 30 days after
your receipt of the notice.

  Termination of your rights under this section does not terminate the
licenses of parties who have received copies or rights from you under
this License.  If your rights have been terminated and not permanently
reinstated, you do not qualify to receive new licenses for the same
material under section 10.

  9. Acceptance Not Required for Having Copies.

  You are not required to accept this License in order to receive or
run a copy of the Program.  Ancillary propagation of a covered work
occurring solely as a consequence of using peer-to-peer transmission
to receive a copy likewise does not require acceptance.  However,
nothing other than this License grants you permission to propagate or
modify any covered work.  These actions infringe copyright if you do
not accept this License.  Therefore, by modifying or propagating a
covered work, you indicate your acceptance of this License to do so.

  10. Automatic Licensing of Downstream Recipients.

  Each time you convey a covered work, the recipient automatically
receives a license from the original licensors, to run, modify and
propagate that work, subject to this License.  You are not responsible
for enforcing compliance by third parties with this License.

  An "entity transaction" is a transaction transferring control of an
organization, or substantially all assets of one, or subdividing an
organization, or merging organizations.  If propagation of a covered
work results from an entity transaction, each party to that
transaction who receives a copy of the work also receives whatever
licenses to the work the party's predecessor in interest had or could
give under the previous paragraph, plus a right to possession of the
Corresponding Source of the work from the predecessor in interest, if
the predecessor has it or can get it with reasonable efforts.

  You may not impose any further restrictions on the exercise of the
rights granted or affirmed under this License.  For example, you may
not impose a license fee, royalty, or other charge for exercise of
rights granted under this License, and you may not initiate litigation
(including a cross-claim or counterclaim in a lawsuit) alleging that
any patent claim is infringed by making, using, selling, offering for
sale, or importing the Program or any portion of it.

  11. Patents.

  A "contributor" is a copyright holder who authorizes use under this
License of the Program or a work on which the Program is based.  The
work thus licensed is called the contributor's "contributor version".

  A contributor's "essential patent claims" are all patent claims
owned or controlled by the contributor, whether already acquired or
hereafter acquired, that would be infringed by some manner, permitted
by this License, of making, using, or selling its contributor version,
but do not include claims that would be infringed only as a
consequence of further modification of the contributor version.  For
purposes of this definition, "control" includes the right to grant
patent sublicenses in a manner consistent with the requirements of
this License.

  Each contributor grants you a non-exclusive, worldwide, royalty-free
patent license under the contributor's essential patent claims, to
make, use, sell, offer for sale, import and otherwise run, modify and
propagate the contents of its contributor version.

  In the following three paragraphs, a "patent license" is any express
agreement or commitment, however denominated, not to enforce a patent
(such as an express permission to practice a patent or covenant not to
sue for patent infringement).  To "grant" such a patent license to a
party means to make such an agreement or commitment not to enforce a
patent against the party.

  If you convey a covered work, knowingly relying on a patent license,
and the Corresponding Source of the work is not available for anyone
to copy, free of charge and under the terms of this License, through a
publicly available network server or other readily accessible means,
then you must either (1) cause the Corresponding Source to be so
available, or (2) arrange to deprive yourself of the benefit of the
patent license for this particular work, or (3) arrange, in a manner
consistent with the requirements of this License, to extend the patent
license to downstream recipients.  "Knowingly relying" means you have
actual knowledge that, but for the patent license, your conveying the
covered work in a country, or your recipient's use of the covered work
in a country, would infringe one or more identifiable patents in that
country that you have reason to believe are valid.

  If, pursuant to or in connection with a single transaction or
arrangement, you convey, or propagate by procuring conveyance of, a
covered work, and grant a patent license to some of the parties
receiving the covered work authorizing them to use, propagate, modify
or convey a specific copy of the covered work, then the patent license
you grant is automatically extended to all recipients of the covered
work and works based on it.

  A patent license is "discriminatory" if it does not include within
the scope of its coverage, prohibits the exercise of, or is
conditioned on the non-exercise of one or more of the rights that are
specifically granted under this License.  You may not convey a covered
work if you are a party to an arrangement with a third party that is
in the business of distributing software, under which you make payment
to the third party based on the extent of your activity of conveying
the work, and under which the third party grants, to any of the
parties who would receive the covered work from you, a discriminatory
patent license (a) in connection with copies of the covered work
conveyed by you (or copies made from those copies), or (b) primarily
for and in connection with specific products or compilations that
contain the covered work, unless you entered into that arrangement,
or that patent license was granted, prior to 28 March 2007.

  Nothing in this License shall be construed as excluding or limiting
any implied license or other defenses to infringement that may
otherwise be available to you under applicable patent law.

  12. No Surrender of Others' Freedom.

  If conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License.  If you cannot convey a
covered work so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you may
not convey it at all.  For example, if you agree to terms that obligate you
to collect a royalty for further conveying from those to whom you convey
the Program, the only way you could satisfy both those terms and this
License would be to refrain entirely from conveying the Program.

  13. Use with the GNU Affero General Public License.

  Notwithstanding any other provision of this License, you have
permission to link or combine any covered work with a work licensed
under version 3 of the GNU Affero General Public License into a single
combined work, and to convey the resulting work.  The terms of this
License will continue to apply to the part which is the covered work,
but the special requirements of the GNU Affero General Public License,
section 13, concerning interaction through a network will apply to the
combination as such.

  14. Revised Versions of this License.

  The Free Software Foundation may publish revised and/or new versions of
the GNU General Public License from time to time.  Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.

  Each version is given a distinguishing version number.  If the
Program specifies that a certain numbered version of the GNU General
Public License "or any later version" applies to it, you have the
option of following the terms and conditions either of that numbered
version or of any later version published by the Free Software
Foundation.  If the Program does not specify a version number of the
GNU General Public License, you may choose any version ever published
by the Free Software Foundation.

  If the Program specifies that a proxy can decide which future
versions of the GNU General Public License can be used, that proxy's
public statement of acceptance of a version permanently authorizes you
to choose that version for the Program.

  Later license versions may give you additional or different
permissions.  However, no additional obligations are imposed on any
author or copyright holder as a result of your choosing to follow a
later version.

  15. Disclaimer of Warranty.

  THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
APPLICABLE LAW.  EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
IS WITH YOU.  SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.

  16. Limitation of Liability.

  IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
SUCH DAMAGES.

  17. Interpretation of Sections 15 and 16.

  If the disclaimer of warranty and limitation of liability provided
above cannot be given local legal effect according to their terms,
reviewing courts shall apply local law that most closely approximates
an absolute waiver of all civil liability in connection with the
Program, unless a warranty or assumption of liability accompanies a
copy of the Program in return for a fee.

                     END OF TERMS AND CONDITIONS

            How to Apply These Terms to Your New Programs

  If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these terms.

  To do so, attach the following notices to the program.  It is safest
to attach them to the start of each source file to most effectively
state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.

    <one line to give the program's name and a brief idea of what it does.>
    Copyright (C) <year>  <name of author>

    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <https://www.gnu.org/licenses/>.

Also add information on how to contact you by electronic and paper mail.

  If the program does terminal interaction, make it output a short
notice like this when it starts in an interactive mode:

    <program>  Copyright (C) <year>  <name of author>
    This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
    This is free software, and you are welcome to redistribute it
    under certain conditions; type `show c' for details.

The hypothetical commands `show w' and `show c' should show the appropriate
parts of the General Public License.  Of course, your program's commands
might be different; for a GUI interface, you would use an "about box".

  You should also get your employer (if you work as a programmer) or school,
if any, to sign a "copyright disclaimer" for the program, if necessary.
For more information on this, and how to apply and follow the GNU GPL, see
<https://www.gnu.org/licenses/>.

  The GNU General Public License does not permit incorporating your program
into proprietary programs.  If your program is a subroutine library, you
may consider it more useful to permit linking proprietary applications with
the library.  If this is what you want to do, use the GNU Lesser General
Public License instead of this License.  But first, please read
<https://www.gnu.org/licenses/why-not-lgpl.html>.


================================================
FILE: README.md
================================================
## Uniswap Info V3

An open sourced interface for Uniswap V3 analytics. 

Info URL: https://info.uniswap.org/#/

## Development

### Install Dependencies

```bash
yarn
```

### Run

```bash
yarn start
```

## Contributions

**Please open all pull requests against the `master` branch.**
CI checks will run against all PRs.


================================================
FILE: cypress.json
================================================
{
  "baseUrl": "http://localhost:3000",
  "pluginsFile": false,
  "fixturesFolder": false,
  "supportFile": "cypress/support/index.js",
  "video": false,
  "defaultCommandTimeout": 10000
}


================================================
FILE: package.json
================================================
{
  "name": "@uniswap/interface",
  "description": "Uniswap Interface",
  "homepage": ".",
  "private": true,
  "devDependencies": {
    "@emotion/core": "^11.0.0",
    "@popperjs/core": "^2.4.4",
    "@reach/dialog": "^0.10.3",
    "@reach/portal": "^0.10.3",
    "@reduxjs/toolkit": "^1.3.5",
    "@styled-system/css": "^5.1.5",
    "@types/jest": "^25.2.1",
    "@types/lodash.flatmap": "^4.5.6",
    "@types/lodash.keyby": "^4.6.6",
    "@types/luxon": "^1.24.4",
    "@types/multicodec": "^1.0.0",
    "@types/node": "^20.8.7",
    "@types/qs": "^6.9.2",
    "@types/react": "18.2.21",
    "@types/react-dom": "^18.2.14",
    "@types/react-redux": "^7.1.28",
    "@types/react-router-dom": "^5.3.3",
    "@types/react-virtualized-auto-sizer": "^1.0.2",
    "@types/react-window": "^1.8.7",
    "@types/rebass": "^4.0.12",
    "@types/styled-components": "^5.1.29",
    "@types/testing-library__cypress": "^5.0.5",
    "@types/wcag-contrast": "^3.0.0",
    "@typescript-eslint/eslint-plugin": "^6.8.0",
    "@typescript-eslint/parser": "^6.8.0",
    "@uniswap/governance": "^1.0.2",
    "@uniswap/liquidity-staker": "^1.0.2",
    "@uniswap/merkle-distributor": "1.0.1",
    "@uniswap/sdk-core": "^4.0.9",
    "@uniswap/token-lists": "^1.0.0-beta.27",
    "@uniswap/v2-core": "^1.0.1",
    "@uniswap/v2-periphery": "^1.1.0-beta.0",
    "@uniswap/v3-sdk": "^3.10.0",
    "@web3-react/core": "^8.2.3",
    "ajv": "^6.12.3",
    "cids": "^1.0.0",
    "copy-to-clipboard": "^3.2.0",
    "cross-env": "^7.0.2",
    "cypress": "^4.11.0",
    "eslint": "^8.51.0",
    "eslint-config-prettier": "^9.0.0",
    "eslint-plugin-prettier": "^5.0.1",
    "eslint-plugin-react": "^7.33.2",
    "eslint-plugin-react-hooks": "^4.6.0",
    "ethers": "^6.8.0",
    "i18next": "^15.0.9",
    "i18next-browser-languagedetector": "^3.0.1",
    "i18next-xhr-backend": "^2.0.1",
    "inter-ui": "^3.13.1",
    "jazzicon": "^1.5.0",
    "lodash.flatmap": "^4.5.0",
    "lodash.keyby": "^4.6.0",
    "luxon": "^1.25.0",
    "multicodec": "^2.0.0",
    "multihashes": "^3.0.1",
    "node-vibrant": "^3.1.5",
    "polished": "^3.3.2",
    "prettier": "^3.0.3",
    "qs": "^6.9.4",
    "react": "^18.2.0",
    "react-confetti": "^6.0.0",
    "react-device-detect": "^1.6.2",
    "react-dom": "^18.2.0",
    "react-feather": "^2.0.8",
    "react-i18next": "^10.7.0",
    "react-markdown": "^4.3.1",
    "react-popper": "^2.2.3",
    "react-redux": "^8.1.3",
    "react-router-dom": "^6.17.0",
    "react-scripts": "^5.0.1",
    "react-spring": "^8.0.27",
    "react-use-gesture": "^6.0.14",
    "react-virtualized-auto-sizer": "^1.0.20",
    "react-window": "^1.8.9",
    "rebass": "^4.0.7",
    "redux-localstorage-simple": "^2.3.1",
    "serve": "^11.3.0",
    "start-server-and-test": "^1.11.0",
    "styled-components": "^6.1.0",
    "styled-system": "^5.1.5",
    "typescript": "^5.2.2",
    "use-count-up": "^2.2.5",
    "wcag-contrast": "^3.0.0"
  },
  "resolutions": {
    "@walletconnect/web3-provider": "1.1.1-alpha.0",
    "**/@types/react": "18.2.21",
    "**/@web3-react/types": "8.2.3"
  },
  "scripts": {
    "start": "react-scripts start",
    "build": "react-scripts build",
    "eject": "react-scripts eject",
    "integration-test": "start-server-and-test 'serve build -l 3000' http://localhost:3000 'cypress run'",
    "storybook": "start-storybook -p 6006",
    "test": "react-scripts test --env=jsdom",
    "lint": "yarn eslint --ignore-path .gitignore --cache --cache-location node_modules/.cache/eslint/ .",
    "codegen:schema": "npx apollo client:download-schema --endpoint=https://api.thegraph.com/subgraphs/name/ianlapham/uniswap-v3-rinkeby",
    "codegen:generate": "apollo codegen:generate --localSchemaFile=schema.json --target=typescript --includes=src/**/*.ts --tagName=gql --addTypename --globalTypesFile=src/types/graphql-global-types.ts types",
    "deduplicate": "yarn-deduplicate --strategy=highest"
  },
  "eslintConfig": {
    "extends": "react-app",
    "ignorePatterns": [
      "node_modules"
    ]
  },
  "browserslist": {
    "production": [
      ">0.2%",
      "not dead",
      "not op_mini all"
    ],
    "development": [
      "last 1 chrome version",
      "last 1 firefox version",
      "last 1 safari version"
    ]
  },
  "license": "GPL-3.0-or-later",
  "dependencies": {
    "@apollo/client": "^3.8.6",
    "@data-ui/histogram": "^0.0.84",
    "@ethersproject/experimental": "^5.7.0",
    "@types/ms": "^0.7.33",
    "@types/numeral": "^2.0.1",
    "@types/ua-parser-js": "^0.7.38",
    "@uniswap/analytics": "^1.6.0",
    "@uniswap/analytics-events": "^2.25.0",
    "@uniswap/default-token-list": "^2.0.0",
    "apollo-cache-inmemory": "^1.6.6",
    "apollo-client": "^2.6.10",
    "apollo-link-http": "^1.5.17",
    "dayjs": "^1.10.4",
    "graphql": "^15.5.0",
    "graphql-tag": "^2.11.0",
    "lightweight-charts": "^3.3.0",
    "ms": "^2.1.3",
    "numbro": "^2.3.2",
    "numeral": "^2.0.6",
    "react-hot-keys": "^2.7.2",
    "react-hotkeys": "^2.0.0",
    "recharts": "^2.0.9",
    "ua-parser-js": "^1.0.36",
    "uifx": "^2.0.7",
    "yarn-deduplicate": "^6.0.2"
  }
}


================================================
FILE: public/451.html
================================================
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8" />
    <title>Unavailable For Legal Reasons</title>
  </head>
  <body>
    <h1>Unavailable For Legal Reasons</h1>
  </body>
</html>


================================================
FILE: public/index.html
================================================
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8" />
    <link rel="shortcut icon" type="image/png" href="%PUBLIC_URL%/favicon.png" />
    <link rel="apple-touch-icon" sizes="192x192" href="%PUBLIC_URL%/images/192x192_App_Icon.png" />
    <link rel="apple-touch-icon" sizes="512x512" href="%PUBLIC_URL%/images/512x512_App_Icon.png" />

    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <meta name="theme-color" content="#ff007a" />
    <meta name="fortmatic-site-verification" content="j93LgcVZk79qcgyo" />
    <!--
      manifest.json provides metadata used when your web app is installed on a
      user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
    -->
    <link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
    <!--
      Notice the use of %PUBLIC_URL% in the tags above.
      It will be replaced with the URL of the `public` folder during the build.
      Only files inside the `public` folder can be referenced from the HTML.

      Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will
      work correctly both with client-side routing and a non-root public URL.
      Learn how to configure a non-root public URL by running `npm run build`.
    -->

    <title>Uniswap Info</title>
  </head>
  <body>
    <noscript>You need to enable JavaScript to run this app.</noscript>
    <div id="root"></div>
    <!--
      This HTML file is a template.
      If you open it directly in the browser, you will see an empty page.

      You can add webfonts, meta tags, or analytics to this file.
      The build step will place the bundled scripts into the <body> tag.

      To begin the development, run `npm start` or `yarn start`.
      To create a production bundle, use `npm run build` or `yarn build`.
    -->
  </body>
</html>


================================================
FILE: public/locales/de.json
================================================
{
  "noWallet": "Keine Ethereum-Wallet gefunden",
  "wrongNetwork": "Du bist auf dem falschen Netzwerk.",
  "switchNetwork": "Bitte wechsle zum {{ correctNetwork }}",
  "installWeb3MobileBrowser": "Bitte besuche uns mit einem web3-fähigen mobilen Browser wie z.B. Trust Wallet oder Coinbase Wallet.",
  "installMetamask": "Bitte besuch uns erneut, nachdem du Metamask oder Brave installiert hast.",
  "disconnected": "Nicht verbunden",
  "swap": "Tauschen",
  "swapAnyway": "Trotzdem tauschen",
  "send": "Senden",
  "sendAnyway": "Trotzdem senden",
  "pool": "Pool",
  "betaWarning": "Dieses Projekt ist in beta. Nutzung auf eigenes Risiko.",
  "input": "Input",
  "output": "Output",
  "estimated": "geschätzt",
  "balance": "Guthaben: {{ balanceInput }}",
  "unlock": "Freischalten",
  "pending": "hängige",
  "selectToken": "Token auswählen",
  "searchOrPaste": "Token Name, Symbol oder Adresse suchen",
  "searchOrPasteMobile": "Name, Symbol oder Adresse",
  "noExchange": "Exchange nicht gefunden",
  "exchangeRate": "Wechselkurs",
  "invertedRate": "Invertierter Wechselkurs",
  "unknownError": "Oops! Ein unbekannter Fehler ist aufgetreten. Bitte Seite neu laden oder uns von einem anderen Browser oder Gerät erneut besuchen.",
  "enterValueCont": "Wert {{ missingCurrencyValue }} eingeben um fortzufahren.",
  "selectTokenCont": "Token auswählen um fortzufahren.",
  "noLiquidity": "Keine Liquidität.",
  "insufficientLiquidity": "Liquidität ungenügend.",
  "unlockTokenCont": "Token freischalten um fortzufahren.",
  "transactionDetails": "Details der Transaktion",
  "hideDetails": "Details ausblenden",
  "slippageWarning": "Wechselkursrutsch",
  "highSlippageWarning": "Hoher Wechselkursrutsch",
  "youAreSelling": "Du verkaufst",
  "orTransFail": "oder die Transaktion wird fehlschlagen.",
  "youWillReceive": "Du erhältst mindestens",
  "youAreBuying": "Du kaufst",
  "itWillCost": "Es kostet höchstens",
  "forAtMost": "für maximal",
  "insufficientBalance": "Guthaben ungenügend",
  "inputNotValid": "Eingabewert ungültig",
  "differentToken": "Es müssen unterschiedliche Token sein.",
  "noRecipient": "Empfängeradresse angeben.",
  "invalidRecipient": "Bitte gib eine gültige Empfängeradresse an.",
  "recipientAddress": "Adresse des Empfängers",
  "youAreSending": "Du schickst",
  "willReceive": "erhält mindestens",
  "to": "zu",
  "addLiquidity": "Liquidität hinzufügen",
  "deposit": "Depot",
  "currentPoolSize": "Aktuelle Größe des Pools",
  "yourPoolShare": "Dein Anteil am Pool",
  "noZero": "Wert darf nicht Null sein.",
  "mustBeETH": "Einer der Inputs muß ETH sein.",
  "enterCurrencyOrLabelCont": "{{ inputCurrency }} oder {{ label }} Wert eingeben um fortzufahren.",
  "youAreAdding": "Du fügst zwischen",
  "and": "und",
  "intoPool": "in den Liquiditätspool.",
  "outPool": "vom Liquiditätspool.",
  "youWillMint": "Du prägst",
  "liquidityTokens": "Liquiditätstokens.",
  "totalSupplyIs": "Die gesamte Anzahl Liquiditätstokens ist aktuell",
  "youAreSettingExRate": "Du setzt den anfänglichen Wechselkurs auf",
  "totalSupplyIs0": "Die gesamte Anzahl Liquiditätstokens ist aktuell 0.",
  "tokenWorth": "Zum gegenwärtigen Wechselkurs ist jeder Pool Token so viel Wert",
  "firstLiquidity": "Du bist die erste Person die Liquidität bereitstellt!",
  "initialExchangeRate": "Der initiale Wechselkurs wird auf deiner Überweisung basieren. Stelle sicher, dass deine ETH und {{ label }} denselben Fiatwert haben.",
  "removeLiquidity": "Liquidität entfernen",
  "poolTokens": "Pool Tokens",
  "enterLabelCont": "{{ label }} Wert eingeben um fortzufahren.",
  "youAreRemoving": "Du entfernst zwischen",
  "youWillRemove": "Du entfernst",
  "createExchange": "Exchange erstellen",
  "invalidTokenAddress": "Ungültige Tokenadresse",
  "exchangeExists": "{{ label }} Exchange existiert bereits!",
  "invalidSymbol": "Symbol ungültig",
  "invalidDecimals": "Dezimalstellen ungültig",
  "tokenAddress": "Tokenadresse",
  "label": "Label",
  "name": "Name",
  "symbol": "Symbol",
  "decimals": "Dezimalstellen",
  "enterTokenCont": "Tokenadresse eingeben um fortzufahren",
  "priceChange": "Geschätzter Wechselkursrutsch",
  "forAtLeast": "für mindestens ",
  "brokenToken": "Der ausgewählte Token ist nicht kompatibel mit Uniswap V1. Liquidität hinzufügen wird zu nicht mehr zugänglichen Token führen!"
}


================================================
FILE: public/locales/en.json
================================================
{
  "noWallet": "No Ethereum wallet found",
  "wrongNetwork": "You are on the wrong network",
  "switchNetwork": "Please switch to {{ correctNetwork }}",
  "installWeb3MobileBrowser": "Please visit us from a web3-enabled mobile browser such as Trust Wallet or Coinbase Wallet.",
  "installMetamask": "Please visit us after installing Metamask on Chrome or Brave.",
  "disconnected": "Disconnected",
  "swap": "Swap",
  "swapAnyway": "Swap Anyway",
  "send": "Send",
  "sendAnyway": "Send Anyway",
  "pool": "Pool",
  "betaWarning": "This project is in beta. Use at your own risk.",
  "input": "Input",
  "output": "Output",
  "estimated": "estimated",
  "balance": "Balance: {{ balanceInput }}",
  "unlock": "Unlock",
  "pending": "Pending",
  "selectToken": "Select a token",
  "searchOrPaste": "Search Token Name, Symbol, or Address",
  "searchOrPasteMobile": "Name, Symbol, or Address",
  "noExchange": "No Exchange Found",
  "noToken": "No Token Found",
  "exchangeRate": "Exchange Rate",
  "unknownError": "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device.",
  "enterValueCont": "Enter a {{ missingCurrencyValue }} value to continue.",
  "selectTokenCont": "Select a token to continue.",
  "noLiquidity": "No liquidity.",
  "insufficientLiquidity": "Insufficient liquidity.",
  "unlockTokenCont": "Please unlock token to continue.",
  "transactionDetails": "Advanced Details",
  "hideDetails": "Hide Details",
  "slippageWarning": "Slippage Warning",
  "highSlippageWarning": "High Slippage Warning",
  "youAreSelling": "You are selling",
  "orTransFail": "or the transaction will fail.",
  "youWillReceive": "You will receive at least",
  "youAreBuying": "You are buying",
  "itWillCost": "It will cost at most",
  "forAtMost": "for at most",
  "insufficientBalance": "Insufficient Balance",
  "inputNotValid": "Not a valid input value",
  "differentToken": "Must be different token.",
  "noRecipient": "Enter a wallet address to send to.",
  "invalidRecipient": "Please enter a valid wallet address recipient.",
  "recipientAddress": "Recipient Address",
  "youAreSending": "You are sending",
  "willReceive": "will receive at least",
  "to": "to",
  "addLiquidity": "Add Liquidity",
  "deposit": "Deposit",
  "currentPoolSize": "Current Pool Size",
  "yourPoolShare": "Your Pool Share",
  "noZero": "Amount cannot be zero.",
  "mustBeETH": "One of the input must be ETH.",
  "enterCurrencyOrLabelCont": "Enter a {{ inputCurrency }} or {{ label }} value to continue.",
  "youAreAdding": "You are adding",
  "and": "and",
  "intoPool": "into the liquidity pool.",
  "outPool": "from the liquidity pool.",
  "youWillMint": "You will mint",
  "liquidityTokens": "liquidity tokens.",
  "totalSupplyIs": "Current total supply of liquidity tokens is",
  "youAreSettingExRate": "You are setting the initial exchange rate to",
  "totalSupplyIs0": "Current total supply of liquidity tokens is 0.",
  "tokenWorth": "At current exchange rate, each pool token is worth",
  "firstLiquidity": "You are the first person to add liquidity!",
  "initialExchangeRate": "The initial exchange rate will be set based on your deposits. Please make sure that your ETH and {{ label }} deposits have the same fiat value.",
  "removeLiquidity": "Remove Liquidity",
  "poolTokens": "Pool Tokens",
  "enterLabelCont": "Enter a {{ label }} value to continue.",
  "youAreRemoving": "You are removing between",
  "youWillRemove": "You will remove",
  "createExchange": "Create Exchange",
  "invalidTokenAddress": "Not a valid token address",
  "exchangeExists": "{{ label }} Exchange already exists!",
  "invalidSymbol": "Invalid symbol",
  "invalidDecimals": "Invalid decimals",
  "tokenAddress": "Token Address",
  "label": "Label",
  "name": "Name",
  "symbol": "Symbol",
  "decimals": "Decimals",
  "enterTokenCont": "Enter a token address to continue",
  "priceChange": "Expected price slippage",
  "forAtLeast": "for at least ",
  "brokenToken": "The selected token is not compatible with Uniswap V1. Adding liquidity will result in locked funds.",
  "toleranceExplanation": "Lowering this limit decreases your risk of frontrunning. However, this makes more likely that your transaction will fail due to normal price movements.",
  "tokenSearchPlaceholder": "Search name or paste address",
  "selectFee": "Select Fee",
  "fee": "fee",
  "setLimits": "Set Limits",
  "percent": "Percent",
  "rate": "Rate",
  "currentRate": "Current {{label}} Rate:",
  "inactiveRangeWarning": "Your position will not be active or earn fees until the selected rates come into range.",
  "invalidRangeWarning": "Invalid Range",
  "connectWallet": "Connect Wallet",
  "unsupportedAsset": "Unsupported Asset",
  "feePool": "Fee Pool",
  "rebalanceMessage": "Your underlying tokens will be automatically rebalanced when the rate of the pool changes and may be different when you withdraw the position.",
  "addEarnHelper": "You will earn fees from trades proportional to your share of the pool.",
  "learnMoreAboutFess": " Learn more about earning fees."
}


================================================
FILE: public/locales/es-AR.json
================================================
{
  "noWallet": "No se encontró billetera de Ethereum",
  "wrongNetwork": "Te encontrás en la red equivocada",
  "switchNetwork": "Por favor cambia a {{ correctNetwork }}",
  "installWeb3MobileBrowser": "Por favor ingresá desde un navegador móvil con web3 habilitado como Trust Wallet o Coinbase Wallet.",
  "installMetamask": "Por favor visítanos nuevamente luego de instalar Metamask en Chrome o Brave.",
  "disconnected": "Desconectado",
  "swap": "Intercambiar",
  "send": "Enviar",
  "pool": "Pool",
  "betaWarning": "Este proyecto se encuentra en beta. Usalo bajo tu propio riesgo.",
  "input": "Entrada",
  "output": "Salida",
  "estimated": "estimado",
  "balance": "Saldo: {{ balanceInput }}",
  "unlock": "Desbloquear",
  "pending": "Pendiente",
  "selectToken": "Seleccioná un token",
  "searchOrPaste": "Buscar Token o Pegar Dirección",
  "noExchange": "No se encontró la divisa",
  "exchangeRate": "Tasa de Cambio",
  "enterValueCont": "Ingresá un valor en {{ missingCurrencyValue }} para continuar.",
  "selectTokenCont": "Seleccioná un token para continuar.",
  "noLiquidity": "Sin liquidez.",
  "unlockTokenCont": "Por favor desbloqueá un token para continuar.",
  "transactionDetails": "Detalles de la transacción",
  "hideDetails": "Ocultar detalles",
  "youAreSelling": "Estás vendiendo",
  "orTransFail": "o la transacción fallará.",
  "youWillReceive": "Vas a recibir al menos",
  "youAreBuying": "Estás comprando",
  "itWillCost": "Costará a lo sumo",
  "insufficientBalance": "Saldo insuficiente",
  "inputNotValid": "No es un valor de entrada válido",
  "differentToken": "Debe ser un token distinto.",
  "noRecipient": "Ingresá una dirección de billetera para enviar.",
  "invalidRecipient": "Por favor ingrese una billetera de destino válida.",
  "recipientAddress": "Dirección del recipiente",
  "youAreSending": "Estás enviando",
  "willReceive": "recibirá al menos",
  "to": "a",
  "addLiquidity": "Agregar liquidez",
  "deposit": "Depositar",
  "currentPoolSize": "Tamaño del Pool Actual",
  "yourPoolShare": "Tu parte del Pool",
  "noZero": "El monto no puede ser cero.",
  "mustBeETH": "Una de las entradas debe ser ETH.",
  "enterCurrencyOrLabelCont": "Ingresá un valor de {{ inputCurrency }} o de {{ label }} para continuar.",
  "youAreAdding": "Estás agregando entre",
  "and": "y",
  "intoPool": "en el pool de liquidez.",
  "outPool": "en el pool de liquidez.",
  "youWillMint": "Vas a acuñar",
  "liquidityTokens": "tokens de liquidez.",
  "totalSupplyIs": "El actual suministro total de tokens de liquidez es",
  "youAreSettingExRate": "Está configurando el tipo de cambio inicial a",
  "totalSupplyIs0": "El actual suministro total de tokens de liquidez es 0.",
  "tokenWorth": "Al tipo de cambio actual, cada token del pool vale",
  "firstLiquidity": "Sos la primer persona en agregar liquidez!",
  "initialExchangeRate": "El tipo de cambio inicial se establecerá en función de tus depósitos. Por favor, asegúrate de que tus depósitos en ETH y {{ label }} tengan el mismo valor fíat.",
  "removeLiquidity": "Remover Liquidez",
  "poolTokens": "Pool de Tokens",
  "enterLabelCont": "Ingresá un valor de {{ label }} para continuar.",
  "youAreRemoving": "Estás quitando entre",
  "youWillRemove": "Vas a remover",
  "createExchange": "Crear divisa",
  "invalidTokenAddress": "No es una dirección de token válida",
  "exchangeExists": "La divisa {{ label }} ya existe!",
  "invalidSymbol": "Símbolo inválido",
  "invalidDecimals": "Decimales inválidos",
  "tokenAddress": "Dirección de Token",
  "label": "Etiqueta",
  "decimals": "Decimales",
  "enterTokenCont": "Ingresá una dirección de token para continuar"
}


================================================
FILE: public/locales/es-US.json
================================================
{
  "noWallet": "No se ha encontrado billetera de Ethereum",
  "wrongNetwork": "Se encuentra en la red equivocada",
  "switchNetwork": "Por favor cambie a {{ correctNetwork }}",
  "installWeb3MobileBrowser": "Por favor ingrese desde un navegador móvil con web3 habilitado como Trust Wallet o Coinbase Wallet.",
  "installMetamask": "Por favor visítenos nuevamente luego de instalar Metamask en Chrome o Brave.",
  "disconnected": "Desconectado",
  "swap": "Intercambiar",
  "send": "Enviar",
  "pool": "Pool",
  "betaWarning": "Este proyecto se encuentra en beta. Úselo bajo tu propio riesgo.",
  "input": "Entrada",
  "output": "Salida",
  "estimated": "estimado",
  "balance": "Saldo: {{ balanceInput }}",
  "unlock": "Desbloquear",
  "pending": "Pendiente",
  "selectToken": "Seleccione un token",
  "searchOrPaste": "Buscar Token o Pegar Dirección",
  "noExchange": "No se ha encontrado la divisa",
  "exchangeRate": "Tasa de Cambio",
  "enterValueCont": "Ingrese un valor en {{ missingCurrencyValue }} para continuar.",
  "selectTokenCont": "Seleccione un token para continuar.",
  "noLiquidity": "Sin liquidez.",
  "unlockTokenCont": "Por favor desbloquea un token para continuar.",
  "transactionDetails": "Detalles de la transacción",
  "hideDetails": "Ocultar detalles",
  "youAreSelling": "Está vendiendo",
  "orTransFail": "o la transacción fallará.",
  "youWillReceive": "Va a recibir al menos",
  "youAreBuying": "Está comprando",
  "itWillCost": "Costará a lo sumo",
  "insufficientBalance": "Saldo insuficiente",
  "inputNotValid": "No es un valor de entrada válido",
  "differentToken": "Debe ser un token distinto.",
  "noRecipient": "Ingrese una dirección de billetera para enviar.",
  "invalidRecipient": "Por favor ingrese una billetera de destino válida.",
  "recipientAddress": "Dirección del recipiente",
  "youAreSending": "Está enviando",
  "willReceive": "recibirá al menos",
  "to": "a",
  "addLiquidity": "Agregar liquidez",
  "deposit": "Depositar",
  "currentPoolSize": "Tamaño del Pool Actual",
  "yourPoolShare": "Su parte del Pool",
  "noZero": "El monto no puede ser cero.",
  "mustBeETH": "Una de las entradas debe ser ETH.",
  "enterCurrencyOrLabelCont": "Ingrese un valor de {{ inputCurrency }} o de {{ label }} para continuar.",
  "youAreAdding": "Está agregando entre",
  "and": "y",
  "intoPool": "en el pool de liquidez.",
  "outPool": "en el pool de liquidez.",
  "youWillMint": "Va a acuñar",
  "liquidityTokens": "tokens de liquidez.",
  "totalSupplyIs": "El actual suministro total de tokens de liquidez es",
  "youAreSettingExRate": "Está configurando el tipo de cambio inicial a",
  "totalSupplyIs0": "El actual suministro total de tokens de liquidez es 0.",
  "tokenWorth": "Al tipo de cambio actual, cada token del pool vale",
  "firstLiquidity": "Es la primer persona en agregar liquidez!",
  "initialExchangeRate": "El tipo de cambio inicial se establecerá en función de sus depósitos. Por favor, asegúrese de que sus depósitos en ETH y {{ label }} tengan el mismo valor fíat.",
  "removeLiquidity": "Remover Liquidez",
  "poolTokens": "Pool de Tokens",
  "enterLabelCont": "Ingresa un valor de {{ label }} para continuar.",
  "youAreRemoving": "Está quitando entre",
  "youWillRemove": "Va a remover",
  "createExchange": "Crear tipo de cambio",
  "invalidTokenAddress": "No es una dirección de token válida",
  "exchangeExists": "El tipo de cambio {{ label }} ya existe!",
  "invalidSymbol": "Símbolo inválido",
  "invalidDecimals": "Decimales inválidos",
  "tokenAddress": "Dirección de Token",
  "label": "Etiqueta",
  "decimals": "Decimales",
  "enterTokenCont": "Ingrese una dirección de token para continuar"
}


================================================
FILE: public/locales/it-IT.json
================================================
{
  "noWallet": "Wallet Ethereum non trovato",
  "wrongNetwork": "Sei connesso alla rete sbagliata",
  "switchNetwork": "Perfavore connettiti su {{ correctNetwork }}",
  "installWeb3MobileBrowser": "Perfavore visita il sito da un browser abilitato web3 o da un app mobile come Trust Wallet o Coinbase Wallet.",
  "installMetamask": "Perfavore ritorna dopo aver installato Metamask su Chrome o Brave.",
  "disconnected": "Disconnesso",
  "swap": "Scambia",
  "swapAnyway": "Scambia comunque",
  "send": "Invia",
  "sendAnyway": "Invia comunque",
  "pool": "Riserva",
  "betaWarning": "Questo progetto è in beta. Usalo a tuo rischio.",
  "input": "Input",
  "output": "Output",
  "estimated": "stimato",
  "balance": "Saldo: {{ balanceInput }}",
  "unlock": "Sblocca",
  "pending": "In attesa",
  "selectToken": "Seleziona un token",
  "searchOrPaste": "Cerca Nome, Simbolo o Indirizzo Token",
  "searchOrPasteMobile": "Nome, Simbolo, o Indirizzo",
  "noExchange": "Nessun Exchange Trovato",
  "exchangeRate": "Tasso di cambio",
  "unknownError": "Oops! Si è verificato un Errore imprevisto. Aggiorna la pagina o visita da un altro browser o dispositivo.",
  "enterValueCont": "Inserisci un valore {{ missingCurrencyValue }} per continuare.",
  "selectTokenCont": "Seleziona un token per continuare.",
  "noLiquidity": "Nessuna liquidità.",
  "insufficientLiquidity": "Liquidità insufficiente.",
  "unlockTokenCont": "Si prega di sbloccare il token per continuare.",
  "transactionDetails": "Dettagli avanzati",
  "hideDetails": "Nascondi dettagli",
  "slippageWarning": "Avviso di scostamento",
  "highSlippageWarning": "Avviso di elevato scostamento",
  "youAreSelling": "Stai vendendo",
  "orTransFail": "o la transazione fallità.",
  "youWillReceive": "Riceverai almeno",
  "youAreBuying": "Stai comprando",
  "itWillCost": "Costerà al massimo",
  "forAtMost": "per al massimo",
  "insufficientBalance": "Saldo insufficente",
  "inputNotValid": "Non è un valore di input valido",
  "differentToken": "Deve essere un token diverso.",
  "noRecipient": "Inserisci un indirizzo di wallet a cui inviare.",
  "invalidRecipient": "Inserisci un destinatario valido per l'indirizzo del wallet.",
  "recipientAddress": "Indirizzo del destinatario",
  "youAreSending": "Stai inviando",
  "willReceive": "riceverà almeno",
  "to": "a",
  "addLiquidity": "Aggiungi liquidità",
  "deposit": "Depositare",
  "currentPoolSize": "Dimensione attuale del pool",
  "yourPoolShare": "La tua parte di pool condivisa",
  "noZero": "L'importo non può essere zero.",
  "mustBeETH": "Uno degli input deve essere ETH.",
  "enterCurrencyOrLabelCont": "Inserisci un valore {{ inputCurrency }} o {{ label }} per continuare.",
  "youAreAdding": "Stai agginugendo",
  "and": "e",
  "intoPool": "nella riserva di liquidità.",
  "outPool": "dalla riserva di liquidità.",
  "youWillMint": "Tu conierai",
  "liquidityTokens": "token di liquidità.",
  "totalSupplyIs": "L'attuale disponibilità totale di token di liquidità è",
  "youAreSettingExRate": "Stai impostando il tasso di cambio iniziale su",
  "totalSupplyIs0": "L'attuale disponibilità totale di token di liquidità è 0.",
  "tokenWorth": "Al tasso di cambio corrente, ogni token del pool vale",
  "firstLiquidity": "Sei la prima persona ad aggiungere liquidità!",
  "initialExchangeRate": "Il tasso di cambio iniziale verrà impostato in base ai tuoi depositi. Assicurati che i tuoi depositi ETH e {{ label }} abbiano lo stesso valore fiat.",
  "removeLiquidity": "Rimuovi Liquidità",
  "poolTokens": "Token Pool",
  "enterLabelCont": "Inserisci un valore {{ label }} per continuare.",
  "youAreRemoving": "Stai rimuovendo tra",
  "youWillRemove": "Rimuoverai",
  "createExchange": "Crea scambio",
  "invalidTokenAddress": "Indirizzo token non valido",
  "exchangeExists": "{{ label }} Exchange già esistente!",
  "invalidSymbol": "Simbolo non valido",
  "invalidDecimals": "Decimali non validi",
  "tokenAddress": "Indirizzo Token",
  "label": "Etichetta",
  "name": "Nome",
  "symbol": "Simbolo",
  "decimals": "Decimali",
  "enterTokenCont": "Inserire un indirizzo token per continuare",
  "priceChange": "Scostamento del prezzo previsto",
  "forAtLeast": "per almeno "
}


================================================
FILE: public/locales/iw.json
================================================
{
  "noWallet": "לא נמצא ארנק",
  "wrongNetwork": "נבחרה רשת לא נכונה",
  "switchNetwork": "{{ correctNetwork }} יש צורך לשנות את הרשת ל",
  "installWeb3MobileBrowser": "יש צורך בארנק ווב3.0, תתקין מטאמאסק או ארנק דומה",
  "installMetamask": " Metamask יש צורך להתקין תוסף מטאמאסק לדפדפן, חפשו בגוגל ",
  "disconnected": "מנותק",
  "swap": "המרה",
  "send": "שליחה",
  "pool": "להפקיד",
  "betaWarning": "הפרויקט נמצא בשלב בטא, השתמשו באחריות",
  "input": "מוכר",
  "output": "אקבל",
  "estimated": "הערכה",
  "balance": "בארנק שלי {{ balanceInput }}",
  "unlock": "שחרור נעילת ארנק",
  "pending": "ממתין לאישור",
  "selectToken": "בחרו את הטוקן להמרה",
  "searchOrPaste": "הכניסו שם או כתובת של טוקן לחיפוש",
  "noExchange": "לא מתאפשרת המרה",
  "exchangeRate": "שער המרה",
  "enterValueCont": "כדי להמשיך {{ missingCurrencyValue }} הזינו ",
  "selectTokenCont": "בחרו טוקן כדי להמשיך",
  "noLiquidity": "אין נזילות",
  "unlockTokenCont": "יש צורך לאשר את הטוקן למסחר",
  "transactionDetails": "פרטי הטרנזקציה",
  "hideDetails": "הסתר פרטים נוספים",
  "youAreSelling": "למכירה",
  "orTransFail": "או שהטרנזקציה תיכשל",
  "youWillReceive": "תוצר המרה מינימלי",
  "youAreBuying": "קונה",
  "itWillCost": "זה יעלה",
  "insufficientBalance": "אין בחשבון מספיק מטבעות",
  "inputNotValid": "קלט לא תקין",
  "differentToken": "יש צורך בטוקנים שונים",
  "noRecipient": "לא הוכנסה כתובת ארנק יעד",
  "invalidRecipient": "לא הוכנסה כתובת תקינה",
  "recipientAddress": "כתובת יעד",
  "youAreSending": "כמות לשליחה",
  "willReceive": "יתקבל לכל הפחות",
  "to": "אל",
  "addLiquidity": "להוספת נזילות למאגר",
  "deposit": "הפקדה",
  "currentPoolSize": "גודל מאגר הנזילות הכולל",
  "yourPoolShare": "חלקך במאגר הנזילות",
  "noZero": "אפס אינו ערך תקין",
  "mustBeETH": "ETH חייב להופיע באחד מהצדדים",
  "enterCurrencyOrLabelCont": "כדי להמשיך {{ inputCurrency }} או {{ label }} הכנס",
  "youAreAdding": "מתווספים למאגר",
  "and": "וגם",
  "intoPool": "לתוך הנזילות",
  "outPool": "מתוך",
  "youWillMint": "יונפקו לכם",
  "liquidityTokens": "טוקנים של נזילות",
  "totalSupplyIs": "חלקך במאגר הנזילות",
  "youAreSettingExRate": "שער ההמרה יקבע על ידך",
  "totalSupplyIs0": "אין לך טוקנים של נזילות",
  "tokenWorth": "שווי כל טוקן נזילות הינו",
  "firstLiquidity": "אתה הראשוןה שמזרים נזילות למאגר",
  "initialExchangeRate": "ושל האית'ר הינן בערך שווה {{ label }} תוודאו שההפקדה של הטוקן",
  "removeLiquidity": "הוצאה של נזילות",
  "poolTokens": "טוקנים של מאגר הנזילות",
  "enterLabelCont": "כדי להמשיך {{ label }} הכנס ",
  "youAreRemoving": "יוסרו",
  "youWillRemove": "יוסרו",
  "createExchange": "ליצירת זוג מסחר",
  "invalidTokenAddress": "כתובת טוקן לא נכונה",
  "exchangeExists": "{{ label }} כבר קיים זוג המרה עבור",
  "invalidSymbol": "תו שגוי",
  "invalidDecimals": "ספרות עשרוניות שגויות",
  "tokenAddress": "כתובת הטוקן",
  "label": "שם",
  "decimals": "ספרות עשרויות",
  "enterTokenCont": "הכניסו כתובת טוקן כדי להמשיך"
}


================================================
FILE: public/locales/ro.json
================================================
{
  "noWallet": "Niciun portofel Ethereum găsit",
  "wrongNetwork": "Nu ești conectat la rețeaua corectă",
  "switchNetwork": "Conectează-te te rog la {{ correctNetwork }}",
  "installWeb3MobileBrowser": "Incearcă să vizitezi această pagina folosind un browser precum Trust Wallet sau Coinbase Wallet.",
  "installMetamask": "Vizitează această pagină din nou după ce instalezi MetaMask în Chrome sau Brave",
  "disconnected": "Deconectat",
  "swap": "Schimbă",
  "swapAnyway": "Schimbă Oricum",
  "send": "Trimite",
  "sendAnyway": "Trimite Oricum",
  "pool": "Depune Lichiditate",
  "betaWarning": "Proiectul este încă în versiunea beta. Folosește-l cu grijă, riscul este al tău.",
  "input": "Input",
  "output": "Output",
  "estimated": "estimat",
  "balance": "Balanță: {{ balanceInput }}",
  "unlock": "Deblochează",
  "pending": "În Așteptare",
  "selectToken": "Selectează un jeton",
  "searchOrPaste": "Caută după Numele, Simbolul sau Adresa Jetonului",
  "searchOrPasteMobile": "Nume, Simbol sau Adresă",
  "noExchange": "Nicio Piață de Schimb Găsită",
  "noToken": "Nicin Jeton Găsit",
  "exchangeRate": "Curs de Schimb",
  "unknownError": "Ups! A intervenit o eroare tehnică. Te rog reîncarcă pagina, sau acceseaz-o de pe alt navigator sau dispozitiv.",
  "enterValueCont": "Setează o valoare pentru {{ missingCurrencyValue }} pentru a continua.",
  "selectTokenCont": "Selectează un jeton pentru a continua.",
  "noLiquidity": "Nu Există Lichiditate.",
  "insufficientLiquidity": "Lichiditate Insuficientă.",
  "unlockTokenCont": "Te rog deblochează jetonul pentru a continua.",
  "transactionDetails": "Detalii Avansate",
  "hideDetails": "Ascunde Detaili",
  "slippageWarning": "Alertă Deviație de Preț",
  "highSlippageWarning": "Alertă Deviație de Preț Mare",
  "youAreSelling": "Tu vinzi",
  "orTransFail": "sau tranzacția va eșua.",
  "youWillReceive": "Vei primi cel puțin",
  "youAreBuying": "Tu cumperi",
  "itWillCost": "Va costa cel mult",
  "forAtMost": "pentru maximum",
  "insufficientBalance": "Balanță Insuficientă",
  "inputNotValid": "Valoarea setată nu este validă",
  "differentToken": "Trebuie să fie un jeton diferit.",
  "noRecipient": "Setează o adresă de portofel pentru destinatar.",
  "invalidRecipient": "Te rog setează o adresă de portofel validă pentru destinatar.",
  "recipientAddress": "Adresa Destinatarului",
  "youAreSending": "Tu trimiți",
  "willReceive": "vei primi cel puțin",
  "to": "spre",
  "addLiquidity": "Adaugă Lichiditate",
  "deposit": "Depozitează",
  "currentPoolSize": "Volumul Actual al Fondului",
  "yourPoolShare": "Partea Ta din Fond",
  "noZero": "Cantitatea nu poate fi zero.",
  "mustBeETH": "Una dintre valori trebuie să fie ETH.",
  "enterCurrencyOrLabelCont": "Setează o valoare pentru {{ inputCurrency }} sau {{ label }} pentru a continua. ",
  "youAreAdding": "Tu adaugi",
  "and": "și",
  "intoPool": "în fondul de lichidatate.",
  "outPool": "din fondul de lichiditate.",
  "youWillMint": "Tu vei tipări",
  "liquidityTokens": "jetoane de lichiditate.",
  "totalSupplyIs": "Cantitatea totală de jetoane de lichiditate este",
  "youAreSettingExRate": "Setezi cursul de schimb inițial la",
  "totalSupplyIs0": "Cantitatea totală de jetoane de lichiditate este 0.",
  "tokenWorth": "La cursul de schimb actual, fiecare jeton de lichiditate este valorat la",
  "firstLiquidity": "Ești prima persoană care depune lichiditate!",
  "initialExchangeRate": "Cursul de schimb inițial va fi setat în funcție de depozitele tale. Te rog asigură-te că ETH-ul și {{ label }}-ul pe care le-ai depozitat au aceeași valoare în bani fiat.",
  "removeLiquidity": "Retrage Lichiditat",
  "poolTokens": "Depune Jetoane",
  "enterLabelCont": "Setează o valoare pentru {{ label }} pentru a continua.",
  "youAreRemoving": "Retragi între",
  "youWillRemove": "Vei retrage",
  "createExchange": "Creează Piață de Schimb",
  "invalidTokenAddress": "Adresa de jeton nu este validă",
  "exchangeExists": "{{ label }} Piața de schimb există deja!",
  "invalidSymbol": "Simbol invalid",
  "invalidDecimals": "Zecimale invalide",
  "tokenAddress": "Adresă Jeton",
  "label": "Denumire",
  "name": "Nume",
  "symbol": "Simbol",
  "decimals": "Zecimale",
  "enterTokenCont": "Setează o adresă de jeton pentru a continua",
  "priceChange": "Deviație de preț așteptată",
  "forAtLeast": "pentru cel puțin ",
  "brokenToken": "Jetonul selectat nu este compatibil cu Uniswap V1. Depunerea de lichiditate îți va bloca fondurile pe vecie.",
  "toleranceExplanation": "Micșorând această limită, vei reduce riscul de frontrunning. În același timp, devine mai probabil că tranzacția va eșua din cauza variațiilor normale de preț.",
  "tokenSearchPlaceholder": "Caută nume sau lipește adresă"
}


================================================
FILE: public/locales/ru.json
================================================
{
  "noWallet": "Кошелек эфира не найден",
  "wrongNetwork": "Некорректная сеть",
  "switchNetwork": "Пожалуйста, перейдите в {{ correctNetwork }}",
  "installWeb3MobileBrowser": "Пожалуйста, откройте в браузере с поддержкой web3, таком, как Trust Wallet или Coinbase Wallet.",
  "installMetamask": "Пожалуйста, откройте в Chrome или Brave с установленным расширением Metamask.",
  "disconnected": "Нет подключения",
  "swap": "Обменять",
  "send": "Отправить",
  "pool": "Вложить",
  "betaWarning": "Проект находится на стадии бета тестирования.",
  "input": "Ввести",
  "output": "Вывести",
  "estimated": "по оценке",
  "balance": "Баланс: {{ balanceInput }}",
  "unlock": "Разблокировать",
  "pending": "Ожидание",
  "selectToken": "Выберите токен",
  "searchOrPaste": "Поиск токена или вставить адрес токена",
  "noExchange": "Обмен не найден",
  "exchangeRate": "Курс обмена",
  "enterValueCont": "Введите {{ missingCurrencyValue }}, чтобы продолжить.",
  "selectTokenCont": "Введите токен, чтобы продолжить.",
  "noLiquidity": "Нет ликвидности.",
  "unlockTokenCont": "Пожалуйста, разблокируйте токен, чтобы продолжить.",
  "transactionDetails": "Детали транзакции",
  "hideDetails": "Скрыть подробности",
  "youAreSelling": "Вы продаете",
  "orTransFail": "или транзакция будет отклонена.",
  "youWillReceive": "Вы получите как минимум",
  "youAreBuying": "Вы покупаете",
  "itWillCost": "В крайнем случае это будет стоить",
  "insufficientBalance": "Недостаточно средств",
  "inputNotValid": "Некорректное значение",
  "differentToken": "Должны быть разные токены.",
  "noRecipient": "Введите адрес кошелька эфира, куда перечислить.",
  "invalidRecipient": "Пожалуйста, введите корректный адрес кошелька получателя.",
  "recipientAddress": "Адрес получателя",
  "youAreSending": "Вы отправляете",
  "willReceive": "получит как минимум",
  "to": "",
  "addLiquidity": "Добавить ликвидность",
  "deposit": "Вложить",
  "currentPoolSize": "Текущий размер пула",
  "yourPoolShare": "Ваша доля в пуле",
  "noZero": "Значение не может быть нулевым.",
  "mustBeETH": "Одно из значений должно быть ETH.",
  "enterCurrencyOrLabelCont": "Введите {{ inputCurrency }} или {{ label }}, чтобы продолжить.",
  "youAreAdding": "Вы добавляете от",
  "and": "и",
  "intoPool": "в пул ликвидности.",
  "outPool": "из пула ликвидности.",
  "youWillMint": "Вы произведёте",
  "liquidityTokens": "токенов ликвидности.",
  "totalSupplyIs": "Ваш объем токенов ликвидности",
  "youAreSettingExRate": "Вы устанавливаете начальный курс обмена",
  "totalSupplyIs0": "Ваш объем токенов ликвидности 0.",
  "tokenWorth": "При текущем курсе, каждый токен пула оценивается в",
  "firstLiquidity": "Вы первый, кто создаст ликвидность!",
  "initialExchangeRate": "Начальный курс обмена будет установлен согласно вашим депозитам. Убедитесь, что ваши депозиты ETH и {{ label }} имеют одинаковое значение в валюте.",
  "removeLiquidity": "Убрать ликвидность",
  "poolTokens": "Токены пула",
  "enterLabelCont": "Введите {{ label }}, чтобы продолжить.",
  "youAreRemoving": "Вы убираете в от",
  "youWillRemove": "Вы уберёте",
  "createExchange": "Создать обмен",
  "invalidTokenAddress": "Некорректный адрес токена",
  "exchangeExists": "{{ label }} Обмен уже существует!",
  "invalidSymbol": "Некорректный символ",
  "invalidDecimals": "Некорректное десятичное значение",
  "tokenAddress": "Адрес токена",
  "label": "Название",
  "decimals": "Десятичное значение",
  "enterTokenCont": "Чтобы продолжить, введите адрес токена"
}


================================================
FILE: public/locales/vi.json
================================================
{
  "noWallet": "Không tìm thấy ví tiền Ethereum",
  "wrongNetwork": "Kết nối mạng không đúng",
  "switchNetwork": "Vui lòng chuyển sang {{ correctNetwork }}",
  "installWeb3MobileBrowser": "Vui lòng truy cập từ trình duyệt di động hỗ trợ web3 như là Ví Trust hoặc Ví Coinbase",
  "installMetamask": "Vui lòng truy cập sau khi cài đặt Metamask trên Chrome hoặc Brave.",
  "disconnected": "Ngắt kết nối rồi",
  "swap": "Hoán đổi",
  "swapAnyway": "Tiếp tục hoán đổi?",
  "send": "Gửi",
  "sendAnyway": "Tiếp tục gửi?",
  "pool": "Chung vốn",
  "betaWarning": "Dự án này đang trong giai đoạn thử nghiệm. Sử dụng có rủi ro của riêng bạn",
  "input": "Đầu vào",
  "output": "Đầu ra",
  "estimated": "ước lượng",
  "balance": "Số dư: {{ balanceInput }}",
  "unlock": "Mở khóa",
  "pending": "Đang chờ xử lý",
  "selectToken": "Chọn một đồng tiền ảo",
  "searchOrPaste": "Tìm kiếm tên, biểu tượng, hoặc địa chỉ của đồng tiền ảo",
  "searchOrPasteMobile": "Tên, Biểu tượng, hoặc Địa chỉ",
  "noExchange": "Không tìm thấy giao dịch",
  "exchangeRate": "Tỷ giá",
  "unknownError": "Rất tiếc! Xảy ra lỗi không xác định. Vui lòng làm mới trang, hoặc truy cập từ trình duyệt hay thiết bị khác.",
  "enterValueCont": "Nhập một giá trị {{ missingCurrencyValue }} để tiếp tục.",
  "selectTokenCont": "Chọn một đồng tiền ảo để tiếp tục.",
  "noLiquidity": "Không có tính thanh khoản.",
  "insufficientLiquidity": "Không đủ tính thanh khoản.",
  "unlockTokenCont": "Vui lòng mở khoá đồng tiền ảo để tiếp tục",
  "transactionDetails": "Chi tiết nâng cao",
  "hideDetails": "Ẩn chi tiết",
  "slippageWarning": "Cảnh báo trượt giá",
  "highSlippageWarning": "Cảnh báo trượt giá cao",
  "youAreSelling": "Bạn đang bán",
  "orTransFail": "hoặc giao dịch sẽ thất bại.",
  "youWillReceive": "Bạn sẽ nhận dược ít nhất là",
  "youAreBuying": "Bạn đang mua",
  "itWillCost": "Nó sẽ có giá cao nhất",
  "forAtMost": "nhiều nhất",
  "insufficientBalance": "Số dư không đủ",
  "inputNotValid": "Giá trị nhập vào không hợp lệ",
  "differentToken": "Đồng tiền ảo phải khác nhau.",
  "noRecipient": "Nhập địa chỉ ví để gửi đến.",
  "invalidRecipient": "Vui lòng nhập một người nhận địa chỉ ví hợp lệ.",
  "recipientAddress": "Địa chỉ người nhận",
  "youAreSending": "Bạn đang gửi",
  "willReceive": "sẽ nhận dược ít nhất là",
  "to": "đến",
  "addLiquidity": "Thêm tiền thanh khoản",
  "deposit": "Gửi tiền",
  "currentPoolSize": "Quy mô hiện tại của quỹ",
  "yourPoolShare": "Phần hùn của bạn trong quỹ",
  "noZero": "Số tiền không thể bằng không.",
  "mustBeETH": "Một trong những đầu vào phải là ETH.",
  "enterCurrencyOrLabelCont": "Nhập giá trị {{ inputCurrency }} hoặc {{ label }} để tiếp tục.",
  "youAreAdding": "Bạn đang thêm",
  "and": "và",
  "intoPool": "vào nhóm thanh khoản.",
  "outPool": "từ nhóm thanh khoản.",
  "youWillMint": "Bạn sẽ đúc tiền",
  "liquidityTokens": "đồng thanh khoản.",
  "totalSupplyIs": "Tổng cung hiện tại của đồng thanh khoản là",
  "youAreSettingExRate": "Bạn đang đặt tỷ giá hối đoái ban đầu thành",
  "totalSupplyIs0": "Tổng cung hiện tại của đồng thanh khoản là 0.",
  "tokenWorth": "Tại tỷ giá hối đoái hiện tại, giá trị đồng token của quỹ là",
  "firstLiquidity": "Bạn là người đầu tiên thêm thanh khoản!",
  "initialExchangeRate": "Tỷ giá hối đoái ban đầu sẽ được thiết lập dựa trên tiền gửi của bạn. Vui lòng đảm bảo rằng tiền gửi ETH và {{ label }} của bạn có cùng giá trị tiền định danh.",
  "removeLiquidity": "Loại bỏ thanh khoản",
  "poolTokens": "Đồng tiền ảo của quỹ",
  "enterLabelCont": "Nhập giá trị {{ label }} để tiếp tục",
  "youAreRemoving": "Bạn đang loại bỏ giữa",
  "youWillRemove": "Bạn sẽ loại bỏ",
  "createExchange": "Tạo giao dịch",
  "invalidTokenAddress": "Địa chỉ đồng tiền điện tử không hợp lệ",
  "exchangeExists": "{{ label }} Giao dịch đã tồn tại!",
  "invalidSymbol": "Biểu tượng không hợp lệ",
  "invalidDecimals": "Số thập phân không hợp lệ",
  "tokenAddress": "Địa chỉ đồng tiền điện tử",
  "label": "Nhãn",
  "name": "Tên",
  "symbol": "Biểu tượng",
  "decimals": "Số thập phân",
  "enterTokenCont": "Nhập địa chỉ đồng tiền ảo để tiếp tục",
  "priceChange": "Trượt giá dự kiến",
  "forAtLeast": "cho ít nhất "
}


================================================
FILE: public/locales/zh-CN.json
================================================
{
  "noWallet": "未发现以太钱包",
  "wrongNetwork": "网络错误",
  "switchNetwork": "请切换到 {{ correctNetwork }}",
  "installWeb3MobileBrowser": "请从支持web3的移动端浏览器,如 Trust Wallet 或 Coinbase Wallet 访问。",
  "installMetamask": "请从安装了 Metamask 插件的 Chrome 或 Brave 访问。",
  "disconnected": "未连接",
  "swap": "兑换",
  "send": "发送",
  "pool": "资金池",
  "betaWarning": "项目尚处于beta阶段。使用需自行承担风险。",
  "input": "输入",
  "output": "输出",
  "estimated": "估计",
  "balance": "余额: {{ balanceInput }}",
  "unlock": "解锁",
  "pending": "处理中",
  "selectToken": "选择通证",
  "searchOrPaste": "搜索通证或粘贴地址",
  "noExchange": "未找到交易所",
  "exchangeRate": "兑换率",
  "enterValueCont": "输入{{ missingCurrencyValue }}值并继续。",
  "selectTokenCont": "选取通证继续。",
  "noLiquidity": "没有流动金。",
  "unlockTokenCont": "请解锁通证并继续。",
  "transactionDetails": "交易明细",
  "hideDetails": "隐藏明细",
  "youAreSelling": "你正在出售",
  "orTransFail": "或交易失败。",
  "youWillReceive": "你将至少收到",
  "youAreBuying": "你正在购买",
  "itWillCost": "它将至少花费",
  "insufficientBalance": "余额不足",
  "inputNotValid": "无效的输入值",
  "differentToken": "必须是不同的通证。",
  "noRecipient": "输入接收钱包地址。",
  "invalidRecipient": "请输入有效的收钱地址。",
  "recipientAddress": "接收地址",
  "youAreSending": "你正在发送",
  "willReceive": "将至少收到",
  "to": "至",
  "addLiquidity": "添加流动金",
  "deposit": "存入",
  "currentPoolSize": "当前资金池大小",
  "yourPoolShare": "你的资金池份额",
  "noZero": "金额不能为零。",
  "mustBeETH": "输入中必须有一个是 ETH。",
  "enterCurrencyOrLabelCont": "输入 {{ inputCurrency }} 或 {{ label }} 值并继续。",
  "youAreAdding": "你将添加",
  "and": "和",
  "intoPool": "入流动资金池。",
  "outPool": "出流动资金池。",
  "youWillMint": "你将铸造",
  "liquidityTokens": "流动通证。",
  "totalSupplyIs": "当前流动通证的总量是",
  "youAreSettingExRate": "你将初始兑换率设置为",
  "totalSupplyIs0": "当前流动通证的总量是0。",
  "tokenWorth": "当前兑换率下,每个资金池通证价值",
  "firstLiquidity": "你是第一个添加流动金的人!",
  "initialExchangeRate": "初始兑换率将由你的存入情况决定。请确保你存入的 ETH 和 {{ label }} 具有相同的总市值。",
  "removeLiquidity": "删除流动金",
  "poolTokens": "资金池通证",
  "enterLabelCont": "输入 {{ label }} 值并继续。",
  "youAreRemoving": "你正在移除",
  "youWillRemove": "你将移除",
  "createExchange": "创建交易所",
  "invalidTokenAddress": "通证地址无效",
  "exchangeExists": "{{ label }} 交易所已存在!",
  "invalidSymbol": "通证符号无效",
  "invalidDecimals": "小数位数无效",
  "tokenAddress": "通证地址",
  "label": "通证符号",
  "decimals": "小数位数",
  "enterTokenCont": "输入通证地址并继续"
}


================================================
FILE: public/locales/zh-TW.json
================================================
{
  "noWallet": "未偵測到以太坊錢包",
  "wrongNetwork": "你位在錯誤的網路",
  "switchNetwork": "請切換到 {{ correctNetwork }}",
  "installWeb3MobileBrowser": "請安裝含有 web3 瀏覽器的手機錢包,如 Trust Wallet 或 Coinbase Wallet。",
  "installMetamask": "請使用 Chrome 或 Brave 瀏覽器安裝 Metamask。",
  "disconnected": "未連接",
  "swap": "兌換",
  "send": "發送",
  "pool": "資金池",
  "betaWarning": "本產品仍在測試階段。使用者需自負風險。",
  "input": "輸入",
  "output": "輸出",
  "estimated": "估計",
  "balance": "餘額: {{ balanceInput }}",
  "unlock": "解鎖",
  "pending": "處理中",
  "selectToken": "選擇代幣",
  "searchOrPaste": "選擇代幣或輸入地址",
  "noExchange": "找不到交易所",
  "exchangeRate": "匯率",
  "enterValueCont": "輸入 {{ missingCurrencyValue }} 以繼續。",
  "selectTokenCont": "選擇代幣以繼續。",
  "noLiquidity": "沒有流動性資金。",
  "unlockTokenCont": "解鎖代幣以繼續。",
  "transactionDetails": "交易明細",
  "hideDetails": "隱藏明細",
  "youAreSelling": "你正在出售",
  "orTransFail": "或交易失敗。",
  "youWillReceive": "你將至少收到",
  "youAreBuying": "你正在購買",
  "itWillCost": "這將花費至多",
  "insufficientBalance": "餘額不足",
  "inputNotValid": "無效的輸入值",
  "differentToken": "必須是不同的代幣。",
  "noRecipient": "請輸入收款人錢包地址。",
  "invalidRecipient": "請輸入有效的錢包地址。",
  "recipientAddress": "收款人錢包地址",
  "youAreSending": "你正在發送",
  "willReceive": "將至少收到",
  "to": "至",
  "addLiquidity": "增加流動性資金",
  "deposit": "存入",
  "currentPoolSize": "目前的資金池總量",
  "yourPoolShare": "你在資金池中的佔比",
  "noZero": "金額不能為零。",
  "mustBeETH": "輸入中必須包含 ETH。",
  "enterCurrencyOrLabelCont": "輸入 {{ inputCurrency }} 或 {{ label }} 以繼續。",
  "youAreAdding": "你將把",
  "and": "和",
  "intoPool": "加入資金池。",
  "outPool": "領出資金池。",
  "youWillMint": "你將產生",
  "liquidityTokens": "流動性代幣。",
  "totalSupplyIs": "目前流動性代幣供給總量為",
  "youAreSettingExRate": "初始的匯率將被設定為",
  "totalSupplyIs0": "目前流動性代幣供給為零。",
  "tokenWorth": "依據目前的匯率,每個流動性代幣價值",
  "firstLiquidity": "您是第一個提供流動性資金的人!",
  "initialExchangeRate": "初始的匯率將取決於你存入的資金。請確保存入的 ETH 和 {{ label }} 的價值相等。",
  "removeLiquidity": "領出流動性資金",
  "poolTokens": "資金池代幣",
  "enterLabelCont": "輸入 {{ label }} 以繼續。",
  "youAreRemoving": "您正在移除",
  "youWillRemove": "您即將移除",
  "createExchange": "創建交易所",
  "invalidTokenAddress": "無效的代幣地址",
  "exchangeExists": "{{ label }} 的交易所已經存在!",
  "invalidSymbol": "代幣符號錯誤",
  "invalidDecimals": "小數位數錯誤",
  "tokenAddress": "代幣地址",
  "label": "代幣符號",
  "decimals": "小數位數",
  "enterTokenCont": "輸入代幣地址"
}


================================================
FILE: public/manifest.json
================================================
{
  "short_name": "Uniswap",
  "name": "Uniswap",
  "icons": [
    {
      "src": "./images/192x192_App_Icon.png",
      "sizes": "192x192",
      "type": "image/png",
      "purpose": "any maskable"
    },
    {
      "src": "./images/512x512_App_Icon.png",
      "sizes": "512x512",
      "type": "image/png",
      "purpose": "any maskable"
    }
  ],
  "orientation": "portrait",
  "display": "standalone",
  "theme_color": "#ff007a",
  "background_color": "#fff"
}


================================================
FILE: schema.json
================================================
{
  "__schema": {
    "description": null,
    "queryType": {
      "name": "Query"
    },
    "mutationType": null,
    "subscriptionType": {
      "name": "Subscription"
    },
    "types": [
      {
        "kind": "SCALAR",
        "name": "BigDecimal",
        "description": null,
        "specifiedByUrl": null,
        "fields": null,
        "inputFields": null,
        "interfaces": null,
        "enumValues": null,
        "possibleTypes": null
      },
      {
        "kind": "SCALAR",
        "name": "BigInt",
        "description": null,
        "specifiedByUrl": null,
        "fields": null,
        "inputFields": null,
        "interfaces": null,
        "enumValues": null,
        "possibleTypes": null
      },
      {
        "kind": "INPUT_OBJECT",
        "name": "Block_height",
        "description": null,
        "specifiedByUrl": null,
        "fields": null,
        "inputFields": [
          {
            "name": "hash",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "Bytes",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "number",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "Int",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          }
        ],
        "interfaces": null,
        "enumValues": null,
        "possibleTypes": null
      },
      {
        "kind": "SCALAR",
        "name": "Int",
        "description": "The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.",
        "specifiedByUrl": null,
        "fields": null,
        "inputFields": null,
        "interfaces": null,
        "enumValues": null,
        "possibleTypes": null
      },
      {
        "kind": "OBJECT",
        "name": "Bundle",
        "description": null,
        "specifiedByUrl": null,
        "fields": [
          {
            "name": "id",
            "description": null,
            "args": [],
            "type": {
              "kind": "NON_NULL",
              "name": null,
              "ofType": {
                "kind": "SCALAR",
                "name": "ID",
                "ofType": null
              }
            },
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "ethPriceUSD",
            "description": null,
            "args": [],
            "type": {
              "kind": "NON_NULL",
              "name": null,
              "ofType": {
                "kind": "SCALAR",
                "name": "BigDecimal",
                "ofType": null
              }
            },
            "isDeprecated": false,
            "deprecationReason": null
          }
        ],
        "inputFields": null,
        "interfaces": [],
        "enumValues": null,
        "possibleTypes": null
      },
      {
        "kind": "SCALAR",
        "name": "ID",
        "description": "The `ID` scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as `\"4\"`) or integer (such as `4`) input value will be accepted as an ID.",
        "specifiedByUrl": null,
        "fields": null,
        "inputFields": null,
        "interfaces": null,
        "enumValues": null,
        "possibleTypes": null
      },
      {
        "kind": "INPUT_OBJECT",
        "name": "Bundle_filter",
        "description": null,
        "specifiedByUrl": null,
        "fields": null,
        "inputFields": [
          {
            "name": "id",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "ID",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "id_not",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "ID",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "id_gt",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "ID",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "id_lt",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "ID",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "id_gte",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "ID",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "id_lte",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "ID",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "id_in",
            "description": null,
            "type": {
              "kind": "LIST",
              "name": null,
              "ofType": {
                "kind": "NON_NULL",
                "name": null,
                "ofType": {
                  "kind": "SCALAR",
                  "name": "ID",
                  "ofType": null
                }
              }
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "id_not_in",
            "description": null,
            "type": {
              "kind": "LIST",
              "name": null,
              "ofType": {
                "kind": "NON_NULL",
                "name": null,
                "ofType": {
                  "kind": "SCALAR",
                  "name": "ID",
                  "ofType": null
                }
              }
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "ethPriceUSD",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigDecimal",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "ethPriceUSD_not",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigDecimal",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "ethPriceUSD_gt",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigDecimal",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "ethPriceUSD_lt",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigDecimal",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "ethPriceUSD_gte",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigDecimal",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "ethPriceUSD_lte",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigDecimal",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "ethPriceUSD_in",
            "description": null,
            "type": {
              "kind": "LIST",
              "name": null,
              "ofType": {
                "kind": "NON_NULL",
                "name": null,
                "ofType": {
                  "kind": "SCALAR",
                  "name": "BigDecimal",
                  "ofType": null
                }
              }
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "ethPriceUSD_not_in",
            "description": null,
            "type": {
              "kind": "LIST",
              "name": null,
              "ofType": {
                "kind": "NON_NULL",
                "name": null,
                "ofType": {
                  "kind": "SCALAR",
                  "name": "BigDecimal",
                  "ofType": null
                }
              }
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          }
        ],
        "interfaces": null,
        "enumValues": null,
        "possibleTypes": null
      },
      {
        "kind": "ENUM",
        "name": "Bundle_orderBy",
        "description": null,
        "specifiedByUrl": null,
        "fields": null,
        "inputFields": null,
        "interfaces": null,
        "enumValues": [
          {
            "name": "id",
            "description": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "ethPriceUSD",
            "description": null,
            "isDeprecated": false,
            "deprecationReason": null
          }
        ],
        "possibleTypes": null
      },
      {
        "kind": "OBJECT",
        "name": "Burn",
        "description": null,
        "specifiedByUrl": null,
        "fields": [
          {
            "name": "id",
            "description": null,
            "args": [],
            "type": {
              "kind": "NON_NULL",
              "name": null,
              "ofType": {
                "kind": "SCALAR",
                "name": "ID",
                "ofType": null
              }
            },
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "transaction",
            "description": null,
            "args": [],
            "type": {
              "kind": "NON_NULL",
              "name": null,
              "ofType": {
                "kind": "OBJECT",
                "name": "Transaction",
                "ofType": null
              }
            },
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "pool",
            "description": null,
            "args": [],
            "type": {
              "kind": "NON_NULL",
              "name": null,
              "ofType": {
                "kind": "OBJECT",
                "name": "Pool",
                "ofType": null
              }
            },
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "timestamp",
            "description": null,
            "args": [],
            "type": {
              "kind": "NON_NULL",
              "name": null,
              "ofType": {
                "kind": "SCALAR",
                "name": "BigInt",
                "ofType": null
              }
            },
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "owner",
            "description": null,
            "args": [],
            "type": {
              "kind": "SCALAR",
              "name": "Bytes",
              "ofType": null
            },
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "origin",
            "description": null,
            "args": [],
            "type": {
              "kind": "NON_NULL",
              "name": null,
              "ofType": {
                "kind": "SCALAR",
                "name": "Bytes",
                "ofType": null
              }
            },
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "amount",
            "description": null,
            "args": [],
            "type": {
              "kind": "NON_NULL",
              "name": null,
              "ofType": {
                "kind": "SCALAR",
                "name": "BigInt",
                "ofType": null
              }
            },
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "amount0",
            "description": null,
            "args": [],
            "type": {
              "kind": "NON_NULL",
              "name": null,
              "ofType": {
                "kind": "SCALAR",
                "name": "BigDecimal",
                "ofType": null
              }
            },
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "amount1",
            "description": null,
            "args": [],
            "type": {
              "kind": "NON_NULL",
              "name": null,
              "ofType": {
                "kind": "SCALAR",
                "name": "BigDecimal",
                "ofType": null
              }
            },
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "amountUSD",
            "description": null,
            "args": [],
            "type": {
              "kind": "SCALAR",
              "name": "BigDecimal",
              "ofType": null
            },
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "tickLower",
            "description": null,
            "args": [],
            "type": {
              "kind": "NON_NULL",
              "name": null,
              "ofType": {
                "kind": "SCALAR",
                "name": "BigInt",
                "ofType": null
              }
            },
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "tickUpper",
            "description": null,
            "args": [],
            "type": {
              "kind": "NON_NULL",
              "name": null,
              "ofType": {
                "kind": "SCALAR",
                "name": "BigInt",
                "ofType": null
              }
            },
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "logIndex",
            "description": null,
            "args": [],
            "type": {
              "kind": "SCALAR",
              "name": "BigInt",
              "ofType": null
            },
            "isDeprecated": false,
            "deprecationReason": null
          }
        ],
        "inputFields": null,
        "interfaces": [],
        "enumValues": null,
        "possibleTypes": null
      },
      {
        "kind": "INPUT_OBJECT",
        "name": "Burn_filter",
        "description": null,
        "specifiedByUrl": null,
        "fields": null,
        "inputFields": [
          {
            "name": "id",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "ID",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "id_not",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "ID",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "id_gt",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "ID",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "id_lt",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "ID",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "id_gte",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "ID",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "id_lte",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "ID",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "id_in",
            "description": null,
            "type": {
              "kind": "LIST",
              "name": null,
              "ofType": {
                "kind": "NON_NULL",
                "name": null,
                "ofType": {
                  "kind": "SCALAR",
                  "name": "ID",
                  "ofType": null
                }
              }
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "id_not_in",
            "description": null,
            "type": {
              "kind": "LIST",
              "name": null,
              "ofType": {
                "kind": "NON_NULL",
                "name": null,
                "ofType": {
                  "kind": "SCALAR",
                  "name": "ID",
                  "ofType": null
                }
              }
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "transaction",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "String",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "transaction_not",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "String",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "transaction_gt",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "String",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "transaction_lt",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "String",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "transaction_gte",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "String",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "transaction_lte",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "String",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "transaction_in",
            "description": null,
            "type": {
              "kind": "LIST",
              "name": null,
              "ofType": {
                "kind": "NON_NULL",
                "name": null,
                "ofType": {
                  "kind": "SCALAR",
                  "name": "String",
                  "ofType": null
                }
              }
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "transaction_not_in",
            "description": null,
            "type": {
              "kind": "LIST",
              "name": null,
              "ofType": {
                "kind": "NON_NULL",
                "name": null,
                "ofType": {
                  "kind": "SCALAR",
                  "name": "String",
                  "ofType": null
                }
              }
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "transaction_contains",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "String",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "transaction_not_contains",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "String",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "transaction_starts_with",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "String",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "transaction_not_starts_with",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "String",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "transaction_ends_with",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "String",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "transaction_not_ends_with",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "String",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "pool",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "String",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "pool_not",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "String",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "pool_gt",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "String",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "pool_lt",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "String",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "pool_gte",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "String",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "pool_lte",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "String",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "pool_in",
            "description": null,
            "type": {
              "kind": "LIST",
              "name": null,
              "ofType": {
                "kind": "NON_NULL",
                "name": null,
                "ofType": {
                  "kind": "SCALAR",
                  "name": "String",
                  "ofType": null
                }
              }
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "pool_not_in",
            "description": null,
            "type": {
              "kind": "LIST",
              "name": null,
              "ofType": {
                "kind": "NON_NULL",
                "name": null,
                "ofType": {
                  "kind": "SCALAR",
                  "name": "String",
                  "ofType": null
                }
              }
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "pool_contains",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "String",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "pool_not_contains",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "String",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "pool_starts_with",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "String",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "pool_not_starts_with",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "String",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "pool_ends_with",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "String",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "pool_not_ends_with",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "String",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "timestamp",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigInt",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "timestamp_not",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigInt",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "timestamp_gt",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigInt",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "timestamp_lt",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigInt",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "timestamp_gte",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigInt",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "timestamp_lte",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigInt",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "timestamp_in",
            "description": null,
            "type": {
              "kind": "LIST",
              "name": null,
              "ofType": {
                "kind": "NON_NULL",
                "name": null,
                "ofType": {
                  "kind": "SCALAR",
                  "name": "BigInt",
                  "ofType": null
                }
              }
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "timestamp_not_in",
            "description": null,
            "type": {
              "kind": "LIST",
              "name": null,
              "ofType": {
                "kind": "NON_NULL",
                "name": null,
                "ofType": {
                  "kind": "SCALAR",
                  "name": "BigInt",
                  "ofType": null
                }
              }
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "owner",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "Bytes",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "owner_not",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "Bytes",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "owner_in",
            "description": null,
            "type": {
              "kind": "LIST",
              "name": null,
              "ofType": {
                "kind": "NON_NULL",
                "name": null,
                "ofType": {
                  "kind": "SCALAR",
                  "name": "Bytes",
                  "ofType": null
                }
              }
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "owner_not_in",
            "description": null,
            "type": {
              "kind": "LIST",
              "name": null,
              "ofType": {
                "kind": "NON_NULL",
                "name": null,
                "ofType": {
                  "kind": "SCALAR",
                  "name": "Bytes",
                  "ofType": null
                }
              }
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "owner_contains",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "Bytes",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "owner_not_contains",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "Bytes",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "origin",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "Bytes",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "origin_not",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "Bytes",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "origin_in",
            "description": null,
            "type": {
              "kind": "LIST",
              "name": null,
              "ofType": {
                "kind": "NON_NULL",
                "name": null,
                "ofType": {
                  "kind": "SCALAR",
                  "name": "Bytes",
                  "ofType": null
                }
              }
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "origin_not_in",
            "description": null,
            "type": {
              "kind": "LIST",
              "name": null,
              "ofType": {
                "kind": "NON_NULL",
                "name": null,
                "ofType": {
                  "kind": "SCALAR",
                  "name": "Bytes",
                  "ofType": null
                }
              }
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "origin_contains",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "Bytes",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "origin_not_contains",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "Bytes",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "amount",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigInt",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "amount_not",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigInt",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "amount_gt",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigInt",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "amount_lt",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigInt",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "amount_gte",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigInt",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "amount_lte",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigInt",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "amount_in",
            "description": null,
            "type": {
              "kind": "LIST",
              "name": null,
              "ofType": {
                "kind": "NON_NULL",
                "name": null,
                "ofType": {
                  "kind": "SCALAR",
                  "name": "BigInt",
                  "ofType": null
                }
              }
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "amount_not_in",
            "description": null,
            "type": {
              "kind": "LIST",
              "name": null,
              "ofType": {
                "kind": "NON_NULL",
                "name": null,
                "ofType": {
                  "kind": "SCALAR",
                  "name": "BigInt",
                  "ofType": null
                }
              }
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "amount0",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigDecimal",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "amount0_not",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigDecimal",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "amount0_gt",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigDecimal",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "amount0_lt",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigDecimal",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "amount0_gte",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigDecimal",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "amount0_lte",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigDecimal",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "amount0_in",
            "description": null,
            "type": {
              "kind": "LIST",
              "name": null,
              "ofType": {
                "kind": "NON_NULL",
                "name": null,
                "ofType": {
                  "kind": "SCALAR",
                  "name": "BigDecimal",
                  "ofType": null
                }
              }
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "amount0_not_in",
            "description": null,
            "type": {
              "kind": "LIST",
              "name": null,
              "ofType": {
                "kind": "NON_NULL",
                "name": null,
                "ofType": {
                  "kind": "SCALAR",
                  "name": "BigDecimal",
                  "ofType": null
                }
              }
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "amount1",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigDecimal",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "amount1_not",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigDecimal",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "amount1_gt",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigDecimal",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "amount1_lt",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigDecimal",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "amount1_gte",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigDecimal",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "amount1_lte",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigDecimal",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "amount1_in",
            "description": null,
            "type": {
              "kind": "LIST",
              "name": null,
              "ofType": {
                "kind": "NON_NULL",
                "name": null,
                "ofType": {
                  "kind": "SCALAR",
                  "name": "BigDecimal",
                  "ofType": null
                }
              }
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "amount1_not_in",
            "description": null,
            "type": {
              "kind": "LIST",
              "name": null,
              "ofType": {
                "kind": "NON_NULL",
                "name": null,
                "ofType": {
                  "kind": "SCALAR",
                  "name": "BigDecimal",
                  "ofType": null
                }
              }
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "amountUSD",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigDecimal",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "amountUSD_not",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigDecimal",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "amountUSD_gt",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigDecimal",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "amountUSD_lt",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigDecimal",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "amountUSD_gte",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigDecimal",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "amountUSD_lte",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigDecimal",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "amountUSD_in",
            "description": null,
            "type": {
              "kind": "LIST",
              "name": null,
              "ofType": {
                "kind": "NON_NULL",
                "name": null,
                "ofType": {
                  "kind": "SCALAR",
                  "name": "BigDecimal",
                  "ofType": null
                }
              }
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "amountUSD_not_in",
            "description": null,
            "type": {
              "kind": "LIST",
              "name": null,
              "ofType": {
                "kind": "NON_NULL",
                "name": null,
                "ofType": {
                  "kind": "SCALAR",
                  "name": "BigDecimal",
                  "ofType": null
                }
              }
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "tickLower",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigInt",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "tickLower_not",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigInt",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "tickLower_gt",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigInt",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "tickLower_lt",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigInt",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "tickLower_gte",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigInt",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "tickLower_lte",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigInt",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "tickLower_in",
            "description": null,
            "type": {
              "kind": "LIST",
              "name": null,
              "ofType": {
                "kind": "NON_NULL",
                "name": null,
                "ofType": {
                  "kind": "SCALAR",
                  "name": "BigInt",
                  "ofType": null
                }
              }
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "tickLower_not_in",
            "description": null,
            "type": {
              "kind": "LIST",
              "name": null,
              "ofType": {
                "kind": "NON_NULL",
                "name": null,
                "ofType": {
                  "kind": "SCALAR",
                  "name": "BigInt",
                  "ofType": null
                }
              }
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "tickUpper",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigInt",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "tickUpper_not",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigInt",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "tickUpper_gt",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigInt",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "tickUpper_lt",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigInt",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "tickUpper_gte",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigInt",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "tickUpper_lte",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigInt",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "tickUpper_in",
            "description": null,
            "type": {
              "kind": "LIST",
              "name": null,
              "ofType": {
                "kind": "NON_NULL",
                "name": null,
                "ofType": {
                  "kind": "SCALAR",
                  "name": "BigInt",
                  "ofType": null
                }
              }
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "tickUpper_not_in",
            "description": null,
            "type": {
              "kind": "LIST",
              "name": null,
              "ofType": {
                "kind": "NON_NULL",
                "name": null,
                "ofType": {
                  "kind": "SCALAR",
                  "name": "BigInt",
                  "ofType": null
                }
              }
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "logIndex",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigInt",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "logIndex_not",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigInt",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "logIndex_gt",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigInt",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "logIndex_lt",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigInt",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "logIndex_gte",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigInt",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "logIndex_lte",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigInt",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "logIndex_in",
            "description": null,
            "type": {
              "kind": "LIST",
              "name": null,
              "ofType": {
                "kind": "NON_NULL",
                "name": null,
                "ofType": {
                  "kind": "SCALAR",
                  "name": "BigInt",
                  "ofType": null
                }
              }
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "logIndex_not_in",
            "description": null,
            "type": {
              "kind": "LIST",
              "name": null,
              "ofType": {
                "kind": "NON_NULL",
                "name": null,
                "ofType": {
                  "kind": "SCALAR",
                  "name": "BigInt",
                  "ofType": null
                }
              }
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          }
        ],
        "interfaces": null,
        "enumValues": null,
        "possibleTypes": null
      },
      {
        "kind": "SCALAR",
        "name": "String",
        "description": "The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.",
        "specifiedByUrl": null,
        "fields": null,
        "inputFields": null,
        "interfaces": null,
        "enumValues": null,
        "possibleTypes": null
      },
      {
        "kind": "ENUM",
        "name": "Burn_orderBy",
        "description": null,
        "specifiedByUrl": null,
        "fields": null,
        "inputFields": null,
        "interfaces": null,
        "enumValues": [
          {
            "name": "id",
            "description": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "transaction",
            "description": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "pool",
            "description": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "timestamp",
            "description": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "owner",
            "description": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "origin",
            "description": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "amount",
            "description": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "amount0",
            "description": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "amount1",
            "description": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "amountUSD",
            "description": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "tickLower",
            "description": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "tickUpper",
            "description": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "logIndex",
            "description": null,
            "isDeprecated": false,
            "deprecationReason": null
          }
        ],
        "possibleTypes": null
      },
      {
        "kind": "SCALAR",
        "name": "Bytes",
        "description": null,
        "specifiedByUrl": null,
        "fields": null,
        "inputFields": null,
        "interfaces": null,
        "enumValues": null,
        "possibleTypes": null
      },
      {
        "kind": "OBJECT",
        "name": "Collect",
        "description": null,
        "specifiedByUrl": null,
        "fields": [
          {
            "name": "id",
            "description": null,
            "args": [],
            "type": {
              "kind": "NON_NULL",
              "name": null,
              "ofType": {
                "kind": "SCALAR",
                "name": "ID",
                "ofType": null
              }
            },
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "transaction",
            "description": null,
            "args": [],
            "type": {
              "kind": "NON_NULL",
              "name": null,
              "ofType": {
                "kind": "OBJECT",
                "name": "Transaction",
                "ofType": null
              }
            },
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "timestamp",
            "description": null,
            "args": [],
            "type": {
              "kind": "NON_NULL",
              "name": null,
              "ofType": {
                "kind": "SCALAR",
                "name": "BigInt",
                "ofType": null
              }
            },
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "pool",
            "description": null,
            "args": [],
            "type": {
              "kind": "NON_NULL",
              "name": null,
              "ofType": {
                "kind": "OBJECT",
                "name": "Pool",
                "ofType": null
              }
            },
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "owner",
            "description": null,
            "args": [],
            "type": {
              "kind": "SCALAR",
              "name": "Bytes",
              "ofType": null
            },
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "amount0",
            "description": null,
            "args": [],
            "type": {
              "kind": "NON_NULL",
              "name": null,
              "ofType": {
                "kind": "SCALAR",
                "name": "BigDecimal",
                "ofType": null
              }
            },
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "amount1",
            "description": null,
            "args": [],
            "type": {
              "kind": "NON_NULL",
              "name": null,
              "ofType": {
                "kind": "SCALAR",
                "name": "BigDecimal",
                "ofType": null
              }
            },
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "amountUSD",
            "description": null,
            "args": [],
            "type": {
              "kind": "SCALAR",
              "name": "BigDecimal",
              "ofType": null
            },
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "tickLower",
            "description": null,
            "args": [],
            "type": {
              "kind": "NON_NULL",
              "name": null,
              "ofType": {
                "kind": "SCALAR",
                "name": "BigInt",
                "ofType": null
              }
            },
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "tickUpper",
            "description": null,
            "args": [],
            "type": {
              "kind": "NON_NULL",
              "name": null,
              "ofType": {
                "kind": "SCALAR",
                "name": "BigInt",
                "ofType": null
              }
            },
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "logIndex",
            "description": null,
            "args": [],
            "type": {
              "kind": "SCALAR",
              "name": "BigInt",
              "ofType": null
            },
            "isDeprecated": false,
            "deprecationReason": null
          }
        ],
        "inputFields": null,
        "interfaces": [],
        "enumValues": null,
        "possibleTypes": null
      },
      {
        "kind": "INPUT_OBJECT",
        "name": "Collect_filter",
        "description": null,
        "specifiedByUrl": null,
        "fields": null,
        "inputFields": [
          {
            "name": "id",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "ID",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "id_not",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "ID",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "id_gt",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "ID",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "id_lt",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "ID",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "id_gte",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "ID",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "id_lte",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "ID",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "id_in",
            "description": null,
            "type": {
              "kind": "LIST",
              "name": null,
              "ofType": {
                "kind": "NON_NULL",
                "name": null,
                "ofType": {
                  "kind": "SCALAR",
                  "name": "ID",
                  "ofType": null
                }
              }
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "id_not_in",
            "description": null,
            "type": {
              "kind": "LIST",
              "name": null,
              "ofType": {
                "kind": "NON_NULL",
                "name": null,
                "ofType": {
                  "kind": "SCALAR",
                  "name": "ID",
                  "ofType": null
                }
              }
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "transaction",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "String",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "transaction_not",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "String",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "transaction_gt",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "String",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "transaction_lt",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "String",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "transaction_gte",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "String",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "transaction_lte",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "String",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "transaction_in",
            "description": null,
            "type": {
              "kind": "LIST",
              "name": null,
              "ofType": {
                "kind": "NON_NULL",
                "name": null,
                "ofType": {
                  "kind": "SCALAR",
                  "name": "String",
                  "ofType": null
                }
              }
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "transaction_not_in",
            "description": null,
            "type": {
              "kind": "LIST",
              "name": null,
              "ofType": {
                "kind": "NON_NULL",
                "name": null,
                "ofType": {
                  "kind": "SCALAR",
                  "name": "String",
                  "ofType": null
                }
              }
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "transaction_contains",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "String",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "transaction_not_contains",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "String",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "transaction_starts_with",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "String",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "transaction_not_starts_with",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "String",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "transaction_ends_with",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "String",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "transaction_not_ends_with",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "String",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "timestamp",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigInt",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "timestamp_not",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigInt",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "timestamp_gt",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigInt",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "timestamp_lt",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigInt",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "timestamp_gte",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigInt",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "timestamp_lte",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigInt",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "timestamp_in",
            "description": null,
            "type": {
              "kind": "LIST",
              "name": null,
              "ofType": {
                "kind": "NON_NULL",
                "name": null,
                "ofType": {
                  "kind": "SCALAR",
                  "name": "BigInt",
                  "ofType": null
                }
              }
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "timestamp_not_in",
            "description": null,
            "type": {
              "kind": "LIST",
              "name": null,
              "ofType": {
                "kind": "NON_NULL",
                "name": null,
                "ofType": {
                  "kind": "SCALAR",
                  "name": "BigInt",
                  "ofType": null
                }
              }
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "pool",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "String",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "pool_not",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "String",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "pool_gt",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "String",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "pool_lt",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "String",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "pool_gte",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "String",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "pool_lte",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "String",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "pool_in",
            "description": null,
            "type": {
              "kind": "LIST",
              "name": null,
              "ofType": {
                "kind": "NON_NULL",
                "name": null,
                "ofType": {
                  "kind": "SCALAR",
                  "name": "String",
                  "ofType": null
                }
              }
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "pool_not_in",
            "description": null,
            "type": {
              "kind": "LIST",
              "name": null,
              "ofType": {
                "kind": "NON_NULL",
                "name": null,
                "ofType": {
                  "kind": "SCALAR",
                  "name": "String",
                  "ofType": null
                }
              }
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "pool_contains",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "String",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "pool_not_contains",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "String",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "pool_starts_with",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "String",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "pool_not_starts_with",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "String",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "pool_ends_with",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "String",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "pool_not_ends_with",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "String",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "owner",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "Bytes",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "owner_not",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "Bytes",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "owner_in",
            "description": null,
            "type": {
              "kind": "LIST",
              "name": null,
              "ofType": {
                "kind": "NON_NULL",
                "name": null,
                "ofType": {
                  "kind": "SCALAR",
                  "name": "Bytes",
                  "ofType": null
                }
              }
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "owner_not_in",
            "description": null,
            "type": {
              "kind": "LIST",
              "name": null,
              "ofType": {
                "kind": "NON_NULL",
                "name": null,
                "ofType": {
                  "kind": "SCALAR",
                  "name": "Bytes",
                  "ofType": null
                }
              }
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "owner_contains",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "Bytes",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "owner_not_contains",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "Bytes",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "amount0",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigDecimal",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "amount0_not",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigDecimal",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "amount0_gt",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigDecimal",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "amount0_lt",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigDecimal",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "amount0_gte",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigDecimal",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "amount0_lte",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigDecimal",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "amount0_in",
            "description": null,
            "type": {
              "kind": "LIST",
              "name": null,
              "ofType": {
                "kind": "NON_NULL",
                "name": null,
                "ofType": {
                  "kind": "SCALAR",
                  "name": "BigDecimal",
                  "ofType": null
                }
              }
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "amount0_not_in",
            "description": null,
            "type": {
              "kind": "LIST",
              "name": null,
              "ofType": {
                "kind": "NON_NULL",
                "name": null,
                "ofType": {
                  "kind": "SCALAR",
                  "name": "BigDecimal",
                  "ofType": null
                }
              }
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "amount1",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigDecimal",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "amount1_not",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigDecimal",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "amount1_gt",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigDecimal",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "amount1_lt",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigDecimal",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "amount1_gte",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigDecimal",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "amount1_lte",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigDecimal",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "amount1_in",
            "description": null,
            "type": {
              "kind": "LIST",
              "name": null,
              "ofType": {
                "kind": "NON_NULL",
                "name": null,
                "ofType": {
                  "kind": "SCALAR",
                  "name": "BigDecimal",
                  "ofType": null
                }
              }
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "amount1_not_in",
            "description": null,
            "type": {
              "kind": "LIST",
              "name": null,
              "ofType": {
                "kind": "NON_NULL",
                "name": null,
                "ofType": {
                  "kind": "SCALAR",
                  "name": "BigDecimal",
                  "ofType": null
                }
              }
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "amountUSD",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigDecimal",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "amountUSD_not",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigDecimal",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "amountUSD_gt",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigDecimal",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "amountUSD_lt",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigDecimal",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "amountUSD_gte",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigDecimal",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "amountUSD_lte",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigDecimal",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "amountUSD_in",
            "description": null,
            "type": {
              "kind": "LIST",
              "name": null,
              "ofType": {
                "kind": "NON_NULL",
                "name": null,
                "ofType": {
                  "kind": "SCALAR",
                  "name": "BigDecimal",
                  "ofType": null
                }
              }
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "amountUSD_not_in",
            "description": null,
            "type": {
              "kind": "LIST",
              "name": null,
              "ofType": {
                "kind": "NON_NULL",
                "name": null,
                "ofType": {
                  "kind": "SCALAR",
                  "name": "BigDecimal",
                  "ofType": null
                }
              }
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "tickLower",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigInt",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "tickLower_not",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigInt",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "tickLower_gt",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigInt",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "tickLower_lt",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigInt",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "tickLower_gte",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigInt",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "tickLower_lte",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigInt",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "tickLower_in",
            "description": null,
            "type": {
              "kind": "LIST",
              "name": null,
              "ofType": {
                "kind": "NON_NULL",
                "name": null,
                "ofType": {
                  "kind": "SCALAR",
                  "name": "BigInt",
                  "ofType": null
                }
              }
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "tickLower_not_in",
            "description": null,
            "type": {
              "kind": "LIST",
              "name": null,
              "ofType": {
                "kind": "NON_NULL",
                "name": null,
                "ofType": {
                  "kind": "SCALAR",
                  "name": "BigInt",
                  "ofType": null
                }
              }
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "tickUpper",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigInt",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "tickUpper_not",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigInt",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "tickUpper_gt",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigInt",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "tickUpper_lt",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigInt",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "tickUpper_gte",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigInt",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "tickUpper_lte",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigInt",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "tickUpper_in",
            "description": null,
            "type": {
              "kind": "LIST",
              "name": null,
              "ofType": {
                "kind": "NON_NULL",
                "name": null,
                "ofType": {
                  "kind": "SCALAR",
                  "name": "BigInt",
                  "ofType": null
                }
              }
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "tickUpper_not_in",
            "description": null,
            "type": {
              "kind": "LIST",
              "name": null,
              "ofType": {
                "kind": "NON_NULL",
                "name": null,
                "ofType": {
                  "kind": "SCALAR",
                  "name": "BigInt",
                  "ofType": null
                }
              }
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "logIndex",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigInt",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "logIndex_not",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigInt",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "logIndex_gt",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigInt",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "logIndex_lt",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigInt",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "logIndex_gte",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigInt",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "logIndex_lte",
            "description": null,
            "type": {
              "kind": "SCALAR",
              "name": "BigInt",
              "ofType": null
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "logIndex_in",
            "description": null,
            "type": {
              "kind": "LIST",
              "name": null,
              "ofType": {
                "kind": "NON_NULL",
                "name": null,
                "ofType": {
                  "kind": "SCALAR",
                  "name": "BigInt",
                  "ofType": null
                }
              }
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "logIndex_not_in",
            "description": null,
            "type": {
              "kind": "LIST",
              "name": null,
              "ofType": {
                "kind": "NON_NULL",
                "name": null,
                "ofType": {
                  "kind": "SCALAR",
                  "name": "BigInt",
                  "ofType": null
                }
              }
            },
            "defaultValue": null,
            "isDeprecated": false,
            "deprecationReason": null
          }
        ],
        "interfaces": null,
        "enumValues": null,
        "possibleTypes": null
      },
      {
        "kind": "ENUM",
        "name": "Collect_orderBy",
        "description": null,
        "specifiedByUrl": null,
        "fields": null,
        "inputFields": null,
        "interfaces": null,
        "enumValues": [
          {
            "name": "id",
            "description": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "transaction",
            "description": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "timestamp",
            "description": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "pool",
            "description": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "owner",
            "description": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "amount0",
            "description": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "amount1",
            "description": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "amountUSD",
            "description": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "tickLower",
            "description": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "tickUpper",
            "description": null,
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "logIndex",
            "description": null,
            "isDeprecated": false,
            "deprecationReason": null
          }
        ],
        "possibleTypes": null
      },
      {
        "kind": "OBJECT",
        "name": "Factory",
        "description": null,
        "specifiedByUrl": null,
        "fields": [
          {
            "name": "id",
            "description": null,
            "args": [],
            "type": {
              "kind": "NON_NULL",
              "name": null,
              "ofType": {
                "kind": "SCALAR",
                "name": "ID",
                "ofType": null
              }
            },
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "poolCount",
            "description": null,
            "args": [],
            "type": {
              "kind": "NON_NULL",
              "name": null,
              "ofType": {
                "kind": "SCALAR",
                "name": "BigInt",
                "ofType": null
              }
            },
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "txCount",
            "description": null,
            "args": [],
            "type": {
              "kind": "NON_NULL",
              "name": null,
              "ofType": {
                "kind": "SCALAR",
                "name": "BigInt",
                "ofType": null
              }
            },
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "totalVolumeUSD",
            "description": null,
            "args": [],
            "type": {
              "kind": "NON_NULL",
              "name": null,
              "ofType": {
                "kind": "SCALAR",
                "name": "BigDecimal",
                "ofType": null
              }
            },
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "totalVolumeETH",
            "description": null,
            "args": [],
            "type": {
              "kind": "NON_NULL",
              "name": null,
              "ofType": {
                "kind": "SCALAR",
                "name": "BigDecimal",
                "ofType": null
              }
            },
            "isDeprecated": false,
            "deprecationReason": null
          },
          {
            "name": "untrackedVolumeUSD",
            "description": null,
            "args": [],
      
Download .txt
gitextract_o05rca_m/

├── .eslintrc.json
├── .github/
│   ├── ISSUE_TEMPLATE/
│   │   ├── bug-report.md
│   │   ├── config.yml
│   │   └── feature-request.md
│   └── workflows/
│       └── semgrep.yml
├── .gitignore
├── .nvmrc
├── .prettierrc
├── .yarnrc
├── LICENSE
├── README.md
├── cypress.json
├── package.json
├── public/
│   ├── 451.html
│   ├── 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
├── schema.json
├── src/
│   ├── apollo/
│   │   └── client.ts
│   ├── components/
│   │   ├── BarChart/
│   │   │   ├── alt.tsx
│   │   │   └── index.tsx
│   │   ├── Button/
│   │   │   └── index.tsx
│   │   ├── CandleChart/
│   │   │   └── index.tsx
│   │   ├── Card/
│   │   │   └── index.tsx
│   │   ├── Column/
│   │   │   └── index.tsx
│   │   ├── Confetti/
│   │   │   └── index.tsx
│   │   ├── CurrencyLogo/
│   │   │   └── index.tsx
│   │   ├── DensityChart/
│   │   │   ├── CurrentPriceLabel.tsx
│   │   │   ├── CustomToolTip.tsx
│   │   │   └── index.tsx
│   │   ├── DoubleLogo/
│   │   │   └── index.tsx
│   │   ├── FormattedCurrencyAmount/
│   │   │   └── index.tsx
│   │   ├── Header/
│   │   │   ├── Polling.tsx
│   │   │   ├── TopBar.tsx
│   │   │   ├── URLWarning.tsx
│   │   │   └── index.tsx
│   │   ├── HoverInlineText/
│   │   │   └── index.tsx
│   │   ├── LineChart/
│   │   │   ├── alt.tsx
│   │   │   └── index.tsx
│   │   ├── ListLogo/
│   │   │   └── index.tsx
│   │   ├── Loader/
│   │   │   └── index.tsx
│   │   ├── Logo/
│   │   │   └── index.tsx
│   │   ├── Menu/
│   │   │   ├── NetworkDropdown.tsx
│   │   │   └── index.tsx
│   │   ├── Modal/
│   │   │   └── index.tsx
│   │   ├── NumericalInput/
│   │   │   └── index.tsx
│   │   ├── Percent/
│   │   │   └── index.tsx
│   │   ├── Popover/
│   │   │   └── index.tsx
│   │   ├── Popups/
│   │   │   ├── ListUpdatePopup.tsx
│   │   │   ├── PopupItem.tsx
│   │   │   └── index.tsx
│   │   ├── QuestionHelper/
│   │   │   └── index.tsx
│   │   ├── Row/
│   │   │   └── index.tsx
│   │   ├── Search/
│   │   │   └── index.tsx
│   │   ├── Text/
│   │   │   └── index.ts
│   │   ├── Toggle/
│   │   │   ├── ListToggle.tsx
│   │   │   ├── MultiToggle.tsx
│   │   │   └── index.tsx
│   │   ├── Tooltip/
│   │   │   └── index.tsx
│   │   ├── TransactionsTable/
│   │   │   └── index.tsx
│   │   ├── pools/
│   │   │   ├── PoolTable.tsx
│   │   │   └── TopPoolMovers.tsx
│   │   ├── shared/
│   │   │   └── index.tsx
│   │   └── tokens/
│   │       ├── TokenTable.tsx
│   │       └── TopTokenMovers.tsx
│   ├── constants/
│   │   ├── abis/
│   │   │   ├── argent-wallet-detector.json
│   │   │   ├── argent-wallet-detector.ts
│   │   │   ├── ens-public-resolver.json
│   │   │   ├── ens-registrar.json
│   │   │   ├── erc20.json
│   │   │   ├── erc20.ts
│   │   │   ├── erc20_bytes32.json
│   │   │   ├── migrator.json
│   │   │   ├── migrator.ts
│   │   │   ├── staking-rewards.ts
│   │   │   ├── unisocks.json
│   │   │   └── weth.json
│   │   ├── chains.ts
│   │   ├── index.ts
│   │   ├── intervals.ts
│   │   ├── lists.ts
│   │   ├── multicall/
│   │   │   ├── abi.json
│   │   │   └── index.ts
│   │   ├── networks.ts
│   │   └── tokenLists/
│   │       └── uniswap-v2-unsupported.tokenlist.json
│   ├── data/
│   │   ├── application/
│   │   │   └── index.ts
│   │   ├── combined/
│   │   │   └── pools.ts
│   │   ├── pools/
│   │   │   ├── chartData.ts
│   │   │   ├── poolData.ts
│   │   │   ├── tickData.ts
│   │   │   ├── topPools.ts
│   │   │   └── transactions.ts
│   │   ├── protocol/
│   │   │   ├── chart.ts
│   │   │   ├── derived.ts
│   │   │   ├── overview.ts
│   │   │   └── transactions.ts
│   │   ├── search/
│   │   │   └── index.ts
│   │   └── tokens/
│   │       ├── chartData.ts
│   │       ├── poolsForToken.ts
│   │       ├── priceData.ts
│   │       ├── tokenData.ts
│   │       ├── topTokens.ts
│   │       └── transactions.ts
│   ├── hooks/
│   │   ├── chart.ts
│   │   ├── useAppDispatch.ts
│   │   ├── useBlocksFromTimestamps.ts
│   │   ├── useCMCLink.ts
│   │   ├── useColor.ts
│   │   ├── useCopyClipboard.ts
│   │   ├── useDebounce.ts
│   │   ├── useEthPrices.ts
│   │   ├── useFetchListCallback.ts
│   │   ├── useHttpLocations.ts
│   │   ├── useInterval.ts
│   │   ├── useIsWindowVisible.ts
│   │   ├── useLast.ts
│   │   ├── useOnClickOutside.tsx
│   │   ├── useParsedQueryString.ts
│   │   ├── usePrevious.ts
│   │   ├── useTheme.ts
│   │   ├── useToggle.ts
│   │   ├── useToggledVersion.ts
│   │   └── useWindowSize.ts
│   ├── i18n.ts
│   ├── index.tsx
│   ├── pages/
│   │   ├── App.tsx
│   │   ├── Home/
│   │   │   └── index.tsx
│   │   ├── Pool/
│   │   │   ├── PoolPage.tsx
│   │   │   └── PoolsOverview.tsx
│   │   ├── Protocol/
│   │   │   └── index.tsx
│   │   ├── Token/
│   │   │   ├── TokenPage.tsx
│   │   │   ├── TokensOverview.tsx
│   │   │   └── redirects.tsx
│   │   ├── Wallets/
│   │   │   └── index.tsx
│   │   └── styled.ts
│   ├── react-app-env.d.ts
│   ├── state/
│   │   ├── application/
│   │   │   ├── actions.ts
│   │   │   ├── hooks.ts
│   │   │   ├── reducer.ts
│   │   │   └── updater.ts
│   │   ├── global/
│   │   │   └── actions.ts
│   │   ├── index.ts
│   │   ├── lists/
│   │   │   ├── actions.ts
│   │   │   ├── hooks.ts
│   │   │   ├── reducer.test.ts
│   │   │   ├── reducer.ts
│   │   │   ├── updater.ts
│   │   │   └── wrappedTokenInfo.ts
│   │   ├── pools/
│   │   │   ├── actions.ts
│   │   │   ├── hooks.ts
│   │   │   ├── reducer.ts
│   │   │   └── updater.ts
│   │   ├── protocol/
│   │   │   ├── actions.ts
│   │   │   ├── hooks.ts
│   │   │   ├── reducer.ts
│   │   │   └── updater.ts
│   │   ├── tokens/
│   │   │   ├── actions.ts
│   │   │   ├── hooks.ts
│   │   │   ├── reducer.ts
│   │   │   └── updater.ts
│   │   └── user/
│   │       ├── actions.ts
│   │       ├── hooks.tsx
│   │       ├── reducer.test.ts
│   │       ├── reducer.ts
│   │       └── updater.tsx
│   ├── theme/
│   │   ├── DarkModeQueryParamReader.tsx
│   │   ├── components.tsx
│   │   ├── index.tsx
│   │   ├── rebass.d.ts
│   │   └── styled.d.ts
│   ├── types/
│   │   └── index.ts
│   └── utils/
│       ├── chunkArray.test.ts
│       ├── chunkArray.ts
│       ├── contenthashToUri.test.skip.ts
│       ├── contenthashToUri.ts
│       ├── currencyId.ts
│       ├── data.ts
│       ├── date.ts
│       ├── getLibrary.ts
│       ├── getTokenList.ts
│       ├── index.ts
│       ├── isZero.ts
│       ├── listSort.ts
│       ├── listVersionLabel.ts
│       ├── networkPrefix.ts
│       ├── numbers.ts
│       ├── parseENSAddress.test.ts
│       ├── parseENSAddress.ts
│       ├── queries.ts
│       ├── resolveENSContentHash.ts
│       ├── retry.test.ts
│       ├── retry.ts
│       ├── tokens.ts
│       ├── uriToHttp.test.ts
│       ├── uriToHttp.ts
│       └── useDebouncedChangeHandler.tsx
└── tsconfig.json
Download .txt
SYMBOL INDEX (440 symbols across 142 files)

FILE: src/components/BarChart/alt.tsx
  constant DEFAULT_HEIGHT (line 13) | const DEFAULT_HEIGHT = 300
  type LineChartProps (line 28) | type LineChartProps = {

FILE: src/components/BarChart/index.tsx
  constant DEFAULT_HEIGHT (line 25) | const DEFAULT_HEIGHT = 300
  type LineChartProps (line 27) | type LineChartProps = {

FILE: src/components/Button/index.tsx
  function ButtonConfirmed (line 285) | function ButtonConfirmed({
  function ButtonError (line 297) | function ButtonError({ error, ...rest }: { error?: boolean } & ButtonPro...
  function ButtonDropdown (line 305) | function ButtonDropdown({ disabled = false, children, ...rest }: { disab...
  function ButtonDropdownGrey (line 316) | function ButtonDropdownGrey({ disabled = false, children, ...rest }: { d...
  function ButtonDropdownLight (line 327) | function ButtonDropdownLight({ disabled = false, children, ...rest }: { ...
  function ButtonRadio (line 338) | function ButtonRadio({ active, ...rest }: { active?: boolean } & ButtonP...
  function ButtonRadioChecked (line 366) | function ButtonRadioChecked({ active = false, children, ...rest }: { act...

FILE: src/components/CandleChart/index.tsx
  constant DEFAULT_HEIGHT (line 23) | const DEFAULT_HEIGHT = 300
  type LineChartProps (line 25) | type LineChartProps = {

FILE: src/components/Confetti/index.tsx
  function Confetti (line 6) | function Confetti({ start, variant }: { start: boolean; variant?: string...

FILE: src/components/CurrencyLogo/index.tsx
  function chainIdToNetworkName (line 12) | function chainIdToNetworkName(networkId: ChainId) {
  function CurrencyLogo (line 53) | function CurrencyLogo({

FILE: src/components/DensityChart/CurrentPriceLabel.tsx
  type LabelProps (line 19) | interface LabelProps {
  type CurrentPriceLabelProps (line 25) | interface CurrentPriceLabelProps {
  function CurrentPriceLabel (line 31) | function CurrentPriceLabel({ data, chartProps, poolData }: CurrentPriceL...

FILE: src/components/DensityChart/CustomToolTip.tsx
  type CustomToolTipProps (line 19) | interface CustomToolTipProps {
  function CustomToolTip (line 25) | function CustomToolTip({ chartProps, poolData, currentPrice }: CustomToo...

FILE: src/components/DensityChart/index.tsx
  type DensityChartProps (line 55) | interface DensityChartProps {
  type ChartEntry (line 59) | interface ChartEntry {
  type ZoomStateProps (line 69) | interface ZoomStateProps {
  constant INITIAL_TICKS_TO_FETCH (line 76) | const INITIAL_TICKS_TO_FETCH = 200
  constant ZOOM_INTERVAL (line 77) | const ZOOM_INTERVAL = 20
  function DensityChart (line 86) | function DensityChart({ address }: DensityChartProps) {

FILE: src/components/DoubleLogo/index.tsx
  type DoubleCurrencyLogoProps (line 12) | interface DoubleCurrencyLogoProps {
  function DoubleCurrencyLogo (line 23) | function DoubleCurrencyLogo({ address0, address1, size = 16, margin = fa...

FILE: src/components/FormattedCurrencyAmount/index.tsx
  constant CURRENCY_AMOUNT_MIN (line 5) | const CURRENCY_AMOUNT_MIN = new Fraction(JSBI.BigInt(1), JSBI.BigInt(100...
  function FormattedCurrencyAmount (line 7) | function FormattedCurrencyAmount({

FILE: src/components/Header/Polling.tsx
  function Polling (line 67) | function Polling() {

FILE: src/components/Header/URLWarning.tsx
  function URLWarning (line 25) | function URLWarning() {

FILE: src/components/Header/index.tsx
  function Header (line 152) | function Header() {

FILE: src/components/LineChart/alt.tsx
  constant DEFAULT_HEIGHT (line 13) | const DEFAULT_HEIGHT = 300
  type LineChartProps (line 28) | type LineChartProps = {

FILE: src/components/LineChart/index.tsx
  constant DEFAULT_HEIGHT (line 25) | const DEFAULT_HEIGHT = 300
  type LineChartProps (line 27) | type LineChartProps = {

FILE: src/components/ListLogo/index.tsx
  function ListLogo (line 12) | function ListLogo({

FILE: src/components/Loader/index.tsx
  function Loader (line 27) | function Loader({

FILE: src/components/Logo/index.tsx
  constant BAD_SRCS (line 6) | const BAD_SRCS: { [tokenAddress: string]: true } = {}
  type LogoProps (line 8) | interface LogoProps extends Pick<ImageProps, 'style' | 'alt' | 'classNam...
  function Logo (line 15) | function Logo({ srcs, alt, ...rest }: LogoProps) {

FILE: src/components/Menu/NetworkDropdown.tsx
  function NetworkDropdown (line 90) | function NetworkDropdown() {

FILE: src/components/Menu/index.tsx
  constant CODE_LINK (line 84) | const CODE_LINK = 'https://github.com/Uniswap/uniswap-v3-info'
  function Menu (line 86) | function Menu() {

FILE: src/components/Modal/index.tsx
  type ModalProps (line 81) | interface ModalProps {
  function Modal (line 90) | function Modal({

FILE: src/components/Percent/index.tsx
  type LogoProps (line 11) | interface LogoProps {
  function Percent (line 20) | function Percent({

FILE: src/components/Popover/index.tsx
  type PopoverProps (line 80) | interface PopoverProps {
  function Popover (line 87) | function Popover({ content, show, children, placement = 'auto' }: Popove...

FILE: src/components/Popups/ListUpdatePopup.tsx
  function ListUpdatePopup (line 20) | function ListUpdatePopup({

FILE: src/components/Popups/PopupItem.tsx
  function PopupItem (line 48) | function PopupItem({

FILE: src/components/Popups/index.tsx
  function Popups (line 46) | function Popups() {

FILE: src/components/QuestionHelper/index.tsx
  function QuestionHelper (line 50) | function QuestionHelper({ text }: { text: string }) {
  function LightQuestionHelper (line 67) | function LightQuestionHelper({ text }: { text: string }) {

FILE: src/components/Toggle/ListToggle.tsx
  type ToggleProps (line 33) | interface ToggleProps {
  function ListToggle (line 40) | function ListToggle({ id, isActive, bgColor, toggle }: ToggleProps) {

FILE: src/components/Toggle/MultiToggle.tsx
  type ToggleProps (line 34) | interface ToggleProps {
  function MultiToggle (line 42) | function MultiToggle({ id, options, activeIndex, toggle, width }: Toggle...

FILE: src/components/Toggle/index.tsx
  type ToggleProps (line 37) | interface ToggleProps {
  function Toggle (line 43) | function Toggle({ id, isActive, toggle }: ToggleProps) {

FILE: src/components/Tooltip/index.tsx
  type TooltipProps (line 12) | interface TooltipProps extends Omit<PopoverProps, 'content'> {
  function Tooltip (line 16) | function Tooltip({ text, ...rest }: TooltipProps) {
  function MouseoverTooltip (line 20) | function MouseoverTooltip({ children, ...rest }: Omit<TooltipProps, 'sho...

FILE: src/components/TransactionsTable/index.tsx
  constant SORT_FIELD (line 83) | const SORT_FIELD = {
  function TransactionTable (line 134) | function TransactionTable({

FILE: src/components/pools/PoolTable.tsx
  constant SORT_FIELD (line 61) | const SORT_FIELD = {
  constant MAX_ITEMS (line 100) | const MAX_ITEMS = 10
  function PoolTable (line 102) | function PoolTable({ poolDatas, maxItems = MAX_ITEMS }: { poolDatas: Poo...

FILE: src/components/pools/TopPoolMovers.tsx
  function TopPoolMovers (line 54) | function TopPoolMovers() {

FILE: src/components/tokens/TokenTable.tsx
  constant SORT_FIELD (line 110) | const SORT_FIELD = {
  constant MAX_ITEMS (line 119) | const MAX_ITEMS = 10
  function TokenTable (line 121) | function TokenTable({

FILE: src/components/tokens/TopTokenMovers.tsx
  function TopTokenMovers (line 61) | function TopTokenMovers() {

FILE: src/constants/abis/argent-wallet-detector.ts
  constant ARGENT_WALLET_DETECTOR_MAINNET_ADDRESS (line 3) | const ARGENT_WALLET_DETECTOR_MAINNET_ADDRESS = '0xeca4B0bDBf7c55E9b79259...

FILE: src/constants/abis/erc20.ts
  constant ERC20_INTERFACE (line 5) | const ERC20_INTERFACE = new Interface(ERC20_ABI)
  constant ERC20_BYTES32_INTERFACE (line 7) | const ERC20_BYTES32_INTERFACE = new Interface(ERC20_BYTES32_ABI)

FILE: src/constants/abis/migrator.ts
  constant MIGRATOR_ADDRESS (line 3) | const MIGRATOR_ADDRESS = '0x16D4F26C15f3658ec65B1126ff27DD3dF2a2996b'

FILE: src/constants/abis/staking-rewards.ts
  constant STAKING_REWARDS_INTERFACE (line 5) | const STAKING_REWARDS_INTERFACE = new Interface(STAKING_REWARDS_ABI)
  constant STAKING_REWARDS_FACTORY_INTERFACE (line 7) | const STAKING_REWARDS_FACTORY_INTERFACE = new Interface(STAKING_REWARDS_...

FILE: src/constants/chains.ts
  constant CHAIN_IDS_TO_NAMES (line 3) | const CHAIN_IDS_TO_NAMES = {
  constant NOT_YET_UX_SUPPORTED_CHAIN_IDS (line 21) | const NOT_YET_UX_SUPPORTED_CHAIN_IDS: number[] = [ChainId.BASE_GOERLI]
  type SupportedInterfaceChain (line 24) | type SupportedInterfaceChain = Exclude<SupportedChainsType, ChainId.BASE...
  function isSupportedChain (line 26) | function isSupportedChain(
  function asSupportedChain (line 36) | function asSupportedChain(
  constant SUPPORTED_GAS_ESTIMATE_CHAIN_IDS (line 47) | const SUPPORTED_GAS_ESTIMATE_CHAIN_IDS = [
  constant SUPPORTED_V2POOL_CHAIN_IDS (line 61) | const SUPPORTED_V2POOL_CHAIN_IDS = [ChainId.MAINNET, ChainId.GOERLI] as ...
  constant TESTNET_CHAIN_IDS (line 63) | const TESTNET_CHAIN_IDS = [
  constant L1_CHAIN_IDS (line 75) | const L1_CHAIN_IDS = [
  type SupportedL1ChainId (line 87) | type SupportedL1ChainId = (typeof L1_CHAIN_IDS)[number]
  constant L2_CHAIN_IDS (line 93) | const L2_CHAIN_IDS = [
  type SupportedL2ChainId (line 101) | type SupportedL2ChainId = (typeof L2_CHAIN_IDS)[number]
  function getChainPriority (line 108) | function getChainPriority(chainId: ChainId): number {
  function isUniswapXSupportedChain (line 137) | function isUniswapXSupportedChain(chainId: number) {

FILE: src/constants/index.ts
  constant MAX_UINT128 (line 7) | const MAX_UINT128 = BigNumber.from(2).pow(128).sub(1)
  constant MATIC_ADDRESS (line 9) | const MATIC_ADDRESS = '0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270'
  constant CELO_ADDRESS (line 10) | const CELO_ADDRESS = '0x471EcE3750Da237f93B8E339c536989b8978a438'
  constant WETH_ADDRESS (line 12) | const WETH_ADDRESS = '0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2'
  constant ARBITRUM_WETH_ADDRESS (line 13) | const ARBITRUM_WETH_ADDRESS = '0x82af49447d8a07e3bd95bd0d56f35241523fbab1'
  constant WETH_ADDRESSES (line 15) | const WETH_ADDRESSES = [WETH_ADDRESS, ARBITRUM_WETH_ADDRESS]
  constant TOKEN_HIDE (line 17) | const TOKEN_HIDE: { [key: string]: string[] } = {
  constant POOL_HIDE (line 33) | const POOL_HIDE: { [key: string]: string[] } = {
  constant START_BLOCKS (line 52) | const START_BLOCKS: { [key: string]: number } = {
  type WalletInfo (line 63) | interface WalletInfo {
  constant AVERAGE_L1_BLOCK_TIME (line 75) | const AVERAGE_L1_BLOCK_TIME = ms(`12s`)
  constant BLOCKED_ADDRESSES (line 80) | const BLOCKED_ADDRESSES: string[] = [

FILE: src/constants/intervals.ts
  constant ONE_HOUR_SECONDS (line 8) | const ONE_HOUR_SECONDS = 3600

FILE: src/constants/lists.ts
  constant UNSUPPORTED_LIST_URLS (line 3) | const UNSUPPORTED_LIST_URLS: string[] = []
  constant OPTIMISM_LIST (line 4) | const OPTIMISM_LIST = 'https://static.optimism.io/optimism.tokenlist.json'
  constant ARBITRUM_LIST (line 5) | const ARBITRUM_LIST = 'https://bridge.arbitrum.io/token-list-42161.json'
  constant POLYGON_LIST (line 6) | const POLYGON_LIST =
  constant CELO_LIST (line 8) | const CELO_LIST = 'https://celo-org.github.io/celo-token-list/celo.token...
  constant BNB_LIST (line 9) | const BNB_LIST = 'https://raw.githubusercontent.com/plasmadlt/plasma-fin...
  constant DEFAULT_LIST_OF_LISTS (line 12) | const DEFAULT_LIST_OF_LISTS: string[] = [
  constant DEFAULT_ACTIVE_LIST_URLS (line 22) | const DEFAULT_ACTIVE_LIST_URLS: string[] = [OPTIMISM_LIST, ARBITRUM_LIST...

FILE: src/constants/networks.ts
  type SupportedNetwork (line 11) | enum SupportedNetwork {
  type NetworkInfo (line 22) | type NetworkInfo = {
  constant SUPPORTED_NETWORK_VERSIONS (line 120) | const SUPPORTED_NETWORK_VERSIONS: NetworkInfo[] = [

FILE: src/data/application/index.ts
  constant SUBGRAPH_HEALTH (line 7) | const SUBGRAPH_HEALTH = gql`
  type HealthResponse (line 24) | interface HealthResponse {
  function useFetchedSubgraphStatus (line 41) | function useFetchedSubgraphStatus(): {

FILE: src/data/combined/pools.ts
  type PoolFields (line 54) | interface PoolFields {
  type PoolDataResponse (line 83) | interface PoolDataResponse {
  function usePoolDatas (line 90) | function usePoolDatas(poolAddresses: string[]): {

FILE: src/data/pools/chartData.ts
  constant ONE_DAY_UNIX (line 11) | const ONE_DAY_UNIX = 24 * 60 * 60
  constant POOL_CHART (line 13) | const POOL_CHART = gql`
  type ChartResults (line 34) | interface ChartResults {
  function fetchPoolChartData (line 46) | async function fetchPoolChartData(address: string, client: ApolloClient<...

FILE: src/data/pools/poolData.ts
  type PoolFields (line 59) | interface PoolFields {
  type PoolDataResponse (line 90) | interface PoolDataResponse {
  function usePoolDatas (line 100) | function usePoolDatas(poolAddresses: string[]): {

FILE: src/data/pools/tickData.ts
  constant PRICE_FIXED_DIGITS (line 8) | const PRICE_FIXED_DIGITS = 4
  constant DEFAULT_SURROUNDING_TICKS (line 9) | const DEFAULT_SURROUNDING_TICKS = 300
  type TickPool (line 25) | interface TickPool {
  type PoolResult (line 42) | interface PoolResult {
  type Tick (line 47) | interface Tick {
  type SurroundingTicksResult (line 55) | interface SurroundingTicksResult {
  type TickProcessed (line 60) | interface TickProcessed {
  type PoolTickData (line 130) | interface PoolTickData {
  type Direction (line 255) | enum Direction {

FILE: src/data/pools/topPools.ts
  constant TOP_POOLS (line 8) | const TOP_POOLS = gql`
  type TopPoolsResponse (line 16) | interface TopPoolsResponse {
  function useTopPoolAddresses (line 25) | function useTopPoolAddresses(): {

FILE: src/data/pools/transactions.ts
  constant POOL_TRANSACTIONS (line 6) | const POOL_TRANSACTIONS = gql`
  type TransactionResults (line 73) | interface TransactionResults {
  function fetchPoolTransactions (line 136) | async function fetchPoolTransactions(

FILE: src/data/protocol/chart.ts
  constant ONE_DAY_UNIX (line 16) | const ONE_DAY_UNIX = 24 * 60 * 60
  constant GLOBAL_CHART (line 18) | const GLOBAL_CHART = gql`
  type ChartResults (line 36) | interface ChartResults {
  function fetchChartData (line 44) | async function fetchChartData(client: ApolloClient<NormalizedCacheObject...
  function useFetchGlobalChartData (line 142) | function useFetchGlobalChartData(): {

FILE: src/data/protocol/derived.ts
  function useTVLOffset (line 18) | function useTVLOffset() {
  function useDerivedOffsetTVLHistory (line 41) | function useDerivedOffsetTVLHistory() {
  constant POOL_COUNT_FOR_AGGREGATE (line 88) | const POOL_COUNT_FOR_AGGREGATE = 20
  function useDerivedProtocolTVLHistory (line 94) | function useDerivedProtocolTVLHistory() {

FILE: src/data/protocol/overview.ts
  type GlobalResponse (line 25) | interface GlobalResponse {
  function useFetchProtocolData (line 34) | function useFetchProtocolData(

FILE: src/data/protocol/transactions.ts
  constant GLOBAL_TRANSACTIONS (line 6) | const GLOBAL_TRANSACTIONS = gql`
  type TransactionEntry (line 66) | type TransactionEntry = {
  type TransactionResults (line 120) | interface TransactionResults {
  function fetchTopTransactions (line 124) | async function fetchTopTransactions(

FILE: src/data/search/index.ts
  constant TOKEN_SEARCH (line 11) | const TOKEN_SEARCH = gql`
  constant POOL_SEARCH (line 44) | const POOL_SEARCH = gql`
  type TokenRes (line 91) | interface TokenRes {
  type PoolResFields (line 112) | interface PoolResFields {
  type PoolRes (line 127) | interface PoolRes {
  function useFetchSearchResults (line 133) | function useFetchSearchResults(value: string): {

FILE: src/data/tokens/chartData.ts
  constant ONE_DAY_UNIX (line 11) | const ONE_DAY_UNIX = 24 * 60 * 60
  constant TOKEN_CHART (line 13) | const TOKEN_CHART = gql`
  type ChartResults (line 30) | interface ChartResults {
  function fetchTokenChartData (line 38) | async function fetchTokenChartData(address: string, client: ApolloClient...

FILE: src/data/tokens/poolsForToken.ts
  constant POOLS_FOR_TOKEN (line 4) | const POOLS_FOR_TOKEN = gql`
  type PoolsForTokenResponse (line 27) | interface PoolsForTokenResponse {
  function fetchPoolsForToken (line 39) | async function fetchPoolsForToken(

FILE: src/data/tokens/priceData.ts
  constant PRICE_CHART (line 35) | const PRICE_CHART = gql`
  type PriceResults (line 53) | interface PriceResults {
  function fetchTokenPriceData (line 63) | async function fetchTokenPriceData(

FILE: src/data/tokens/tokenData.ts
  type TokenFields (line 40) | interface TokenFields {
  type TokenDataResponse (line 53) | interface TokenDataResponse {
  function useFetchedTokenDatas (line 63) | function useFetchedTokenDatas(tokenAddresses: string[]): {

FILE: src/data/tokens/topTokens.ts
  constant TOP_TOKENS (line 6) | const TOP_TOKENS = gql`
  type TopTokensResponse (line 14) | interface TopTokensResponse {
  function useTopTokenAddresses (line 23) | function useTopTokenAddresses(): {

FILE: src/data/tokens/transactions.ts
  constant GLOBAL_TRANSACTIONS (line 6) | const GLOBAL_TRANSACTIONS = gql`
  type TransactionResults (line 171) | interface TransactionResults {
  function fetchTokenTransactions (line 294) | async function fetchTokenTransactions(

FILE: src/hooks/chart.ts
  function unixToType (line 8) | function unixToType(unix: number, type: 'month' | 'week') {
  function useTransformedVolumeData (line 23) | function useTransformedVolumeData(

FILE: src/hooks/useBlocksFromTimestamps.ts
  function useBlocksFromTimestamps (line 25) | function useBlocksFromTimestamps(
  function getBlocksFromTimestamps (line 95) | async function getBlocksFromTimestamps(

FILE: src/hooks/useCMCLink.ts
  function useCMCLink (line 11) | function useCMCLink(address: string): string | undefined {

FILE: src/hooks/useColor.ts
  function getColorFromToken (line 9) | async function getColorFromToken(token: Token): Promise<string | null> {
  function getColorFromUriPath (line 29) | async function getColorFromUriPath(uri: string): Promise<string | null> {
  function useColor (line 43) | function useColor(address?: string) {
  function useListColor (line 72) | function useListColor(listImageUri?: string) {

FILE: src/hooks/useCopyClipboard.ts
  function useCopyClipboard (line 4) | function useCopyClipboard(timeout = 500): [boolean, (toCopy: string) => ...

FILE: src/hooks/useDebounce.ts
  function useDebounce (line 4) | function useDebounce<T>(value: T, delay: number): T {

FILE: src/hooks/useEthPrices.ts
  type EthPrices (line 8) | interface EthPrices {
  constant ETH_PRICES (line 15) | const ETH_PRICES = gql`
  type PricesResponse (line 32) | interface PricesResponse {
  function fetchEthPrices (line 47) | async function fetchEthPrices(
  function useEthPrices (line 94) | function useEthPrices(): EthPrices | undefined {

FILE: src/hooks/useFetchListCallback.ts
  function useFetchListCallback (line 8) | function useFetchListCallback(): (listUrl: string, sendDispatch?: boolea...

FILE: src/hooks/useHttpLocations.ts
  function useHttpLocations (line 4) | function useHttpLocations(uri: string | undefined): string[] {

FILE: src/hooks/useInterval.ts
  function useInterval (line 3) | function useInterval(callback: () => void, delay: null | number, leading...

FILE: src/hooks/useIsWindowVisible.ts
  constant VISIBILITY_STATE_SUPPORTED (line 3) | const VISIBILITY_STATE_SUPPORTED = 'visibilityState' in document
  function isWindowVisible (line 5) | function isWindowVisible() {
  function useIsWindowVisible (line 12) | function useIsWindowVisible(): boolean {

FILE: src/hooks/useLast.ts
  function useLast (line 8) | function useLast<T>(
  function isDefined (line 23) | function isDefined<T>(x: T | null | undefined): x is T {
  function useLastTruthy (line 31) | function useLastTruthy<T>(value: T | undefined | null): T | null | undef...

FILE: src/hooks/useOnClickOutside.tsx
  function useOnClickOutside (line 3) | function useOnClickOutside<T extends HTMLElement>(

FILE: src/hooks/useParsedQueryString.ts
  function useParsedQueryString (line 5) | function useParsedQueryString(): ParsedQs {

FILE: src/hooks/usePrevious.ts
  function usePrevious (line 4) | function usePrevious<T>(value: T) {

FILE: src/hooks/useTheme.ts
  function useTheme (line 4) | function useTheme() {

FILE: src/hooks/useToggle.ts
  function useToggle (line 3) | function useToggle(initialState = false): [boolean, () => void] {

FILE: src/hooks/useToggledVersion.ts
  type Version (line 3) | enum Version {
  constant DEFAULT_VERSION (line 8) | const DEFAULT_VERSION: Version = Version.v2
  function useToggledVersion (line 10) | function useToggledVersion(): Version {

FILE: src/hooks/useWindowSize.ts
  function getSize (line 5) | function getSize() {
  function useWindowSize (line 13) | function useWindowSize() {

FILE: src/index.tsx
  constant AMPLITUDE_DUMMY_KEY (line 22) | const AMPLITUDE_DUMMY_KEY = '00000000000000000000000000000000'
  function Updaters (line 29) | function Updaters() {

FILE: src/pages/App.tsx
  constant BLOCK_DIFFERENCE_THRESHOLD (line 100) | const BLOCK_DIFFERENCE_THRESHOLD = 30
  function App (line 102) | function App() {

FILE: src/pages/Home/index.tsx
  function Home (line 37) | function Home() {

FILE: src/pages/Pool/PoolPage.tsx
  type ChartView (line 71) | enum ChartView {
  function PoolPageWrapper (line 78) | function PoolPageWrapper() {
  function PoolPage (line 86) | function PoolPage({ address }: { address: string }) {

FILE: src/pages/Pool/PoolsOverview.tsx
  function PoolPage (line 13) | function PoolPage() {

FILE: src/pages/Protocol/index.tsx
  function Protocol (line 3) | function Protocol() {

FILE: src/pages/Token/TokenPage.tsx
  type ChartView (line 80) | enum ChartView {
  constant DEFAULT_TIME_WINDOW (line 86) | const DEFAULT_TIME_WINDOW = TimeWindow.WEEK
  function TokenPage (line 88) | function TokenPage() {

FILE: src/pages/Token/TokensOverview.tsx
  function TokensOverview (line 13) | function TokensOverview() {

FILE: src/pages/Token/redirects.tsx
  function RedirectInvalidToken (line 6) | function RedirectInvalidToken() {

FILE: src/pages/Wallets/index.tsx
  function Wallets (line 3) | function Wallets() {

FILE: src/react-app-env.d.ts
  type Window (line 9) | interface Window {

FILE: src/state/application/actions.ts
  type PopupContent (line 5) | type PopupContent = {
  type ApplicationModal (line 14) | enum ApplicationModal {

FILE: src/state/application/hooks.ts
  function useBlockNumber (line 34) | function useBlockNumber(): number | undefined {
  function useModalOpen (line 41) | function useModalOpen(modal: ApplicationModal): boolean {
  function useToggleModal (line 46) | function useToggleModal(modal: ApplicationModal): () => void {
  function useOpenModal (line 52) | function useOpenModal(modal: ApplicationModal): () => void {
  function useCloseModals (line 57) | function useCloseModals(): () => void {
  function useWalletModalToggle (line 62) | function useWalletModalToggle(): () => void {
  function useToggleSettingsMenu (line 66) | function useToggleSettingsMenu(): () => void {
  function useAddPopup (line 71) | function useAddPopup(): (content: PopupContent, key?: string) => void {
  function useRemovePopup (line 83) | function useRemovePopup(): (key: string) => void {
  function useActivePopups (line 94) | function useActivePopups(): AppState['application']['popupList'] {
  function useSubgraphStatus (line 100) | function useSubgraphStatus(): [
  function useActiveNetworkVersion (line 121) | function useActiveNetworkVersion(): [NetworkInfo, (activeNetworkVersion:...
  function useDataClient (line 134) | function useDataClient(): ApolloClient<NormalizedCacheObject> {
  function useBlockClient (line 159) | function useBlockClient(): ApolloClient<NormalizedCacheObject> {
  function useClients (line 184) | function useClients(): {

FILE: src/state/application/reducer.ts
  type PopupList (line 15) | type PopupList = Array<{ key: string; show: boolean; content: PopupConte...
  type ApplicationState (line 17) | interface ApplicationState {

FILE: src/state/application/updater.ts
  function Updater (line 5) | function Updater(): null {

FILE: src/state/index.ts
  constant PERSISTED_KEYS (line 12) | const PERSISTED_KEYS: string[] = ['user', 'lists']
  type AppState (line 31) | type AppState = ReturnType<typeof store.getState>
  type AppDispatch (line 32) | type AppDispatch = typeof store.dispatch

FILE: src/state/lists/hooks.ts
  type TagDetails (line 12) | type TagDetails = Tags[keyof Tags]
  type TagInfo (line 13) | interface TagInfo extends TagDetails {
  type TokenAddressMap (line 17) | type TokenAddressMap = Readonly<{
  type Mutable (line 23) | type Mutable<T> = {
  function listToTokenMap (line 30) | function listToTokenMap(list: TokenList): TokenAddressMap {
  constant TRANSFORMED_DEFAULT_TOKEN_LIST (line 50) | const TRANSFORMED_DEFAULT_TOKEN_LIST = listToTokenMap(DEFAULT_TOKEN_LIST)
  function useAllLists (line 52) | function useAllLists(): {
  function combineMaps (line 68) | function combineMaps(map1: TokenAddressMap, map2: TokenAddressMap): Toke...
  function useCombinedTokenMapFromUrls (line 89) | function useCombinedTokenMapFromUrls(urls: string[] | undefined): TokenA...
  function useActiveListUrls (line 113) | function useActiveListUrls(): string[] | undefined {
  function useInactiveListUrls (line 119) | function useInactiveListUrls(): string[] {
  function useCombinedActiveList (line 126) | function useCombinedActiveList(): TokenAddressMap {
  function useCombinedInactiveList (line 133) | function useCombinedInactiveList(): TokenAddressMap {
  function useUnsupportedTokenList (line 139) | function useUnsupportedTokenList(): TokenAddressMap {
  function useIsListActive (line 150) | function useIsListActive(url: string): boolean {

FILE: src/state/lists/reducer.test.ts
  constant STUB_TOKEN_LIST (line 8) | const STUB_TOKEN_LIST = {
  constant PATCHED_STUB_LIST (line 15) | const PATCHED_STUB_LIST = {
  constant MINOR_UPDATED_STUB_LIST (line 19) | const MINOR_UPDATED_STUB_LIST = {
  constant MAJOR_UPDATED_STUB_LIST (line 23) | const MAJOR_UPDATED_STUB_LIST = {

FILE: src/state/lists/reducer.ts
  type ListsState (line 9) | interface ListsState {
  type ListState (line 25) | type ListState = ListsState['byUrl'][string]
  constant NEW_LIST_STATE (line 27) | const NEW_LIST_STATE: ListState = {
  type Mutable (line 34) | type Mutable<T> = { -readonly [P in keyof T]: T[P] extends ReadonlyArray...

FILE: src/state/lists/updater.ts
  function Updater (line 12) | function Updater(): null {

FILE: src/state/lists/wrappedTokenInfo.ts
  type TagDetails (line 6) | type TagDetails = Tags[keyof Tags]
  type TagInfo (line 7) | interface TagInfo extends TagDetails {
  class WrappedTokenInfo (line 13) | class WrappedTokenInfo implements Token {
    method constructor (line 20) | constructor(tokenInfo: TokenInfo, list: TokenList) {
    method address (line 27) | public get address(): string {
    method chainId (line 34) | public get chainId(): number {
    method decimals (line 38) | public get decimals(): number {
    method name (line 42) | public get name(): string {
    method symbol (line 46) | public get symbol(): string {
    method logoURI (line 50) | public get logoURI(): string | undefined {
    method tags (line 55) | public get tags(): TagInfo[] {
    method equals (line 69) | equals(other: Currency): boolean {
    method sortsBefore (line 73) | sortsBefore(other: Token): boolean {
    method wrapped (line 78) | public get wrapped(): Token {

FILE: src/state/pools/hooks.ts
  function useAllPoolData (line 14) | function useAllPoolData(): {
  function useUpdatePoolData (line 21) | function useUpdatePoolData(): (pools: PoolData[]) => void {
  function useAddPoolKeys (line 30) | function useAddPoolKeys(): (addresses: string[]) => void {
  function usePoolDatas (line 39) | function usePoolDatas(poolAddresses: string[]): PoolData[] {
  function usePoolChartData (line 73) | function usePoolChartData(address: string): PoolChartEntry[] | undefined {
  function usePoolTransactions (line 105) | function usePoolTransactions(address: string): Transaction[] | undefined {
  function usePoolTickData (line 131) | function usePoolTickData(

FILE: src/state/pools/reducer.ts
  type Pool (line 9) | interface Pool {
  type PoolData (line 15) | interface PoolData {
  type PoolChartEntry (line 59) | type PoolChartEntry = {
  type PoolsState (line 66) | interface PoolsState {

FILE: src/state/pools/updater.ts
  function Updater (line 8) | function Updater(): null {

FILE: src/state/protocol/hooks.ts
  function useProtocolData (line 9) | function useProtocolData(): [ProtocolData | undefined, (protocolData: Pr...
  function useProtocolChartData (line 23) | function useProtocolChartData(): [ChartDayData[] | undefined, (chartData...
  function useProtocolTransactions (line 37) | function useProtocolTransactions(): [Transaction[] | undefined, (transac...

FILE: src/state/protocol/reducer.ts
  type ProtocolData (line 7) | interface ProtocolData {
  type ProtocolState (line 25) | interface ProtocolState {
  constant DEFAULT_INITIAL_STATE (line 36) | const DEFAULT_INITIAL_STATE = {

FILE: src/state/protocol/updater.ts
  function Updater (line 8) | function Updater(): null {

FILE: src/state/tokens/hooks.ts
  function useAllTokenData (line 26) | function useAllTokenData(): {
  function useUpdateTokenData (line 33) | function useUpdateTokenData(): (tokens: TokenData[]) => void {
  function useAddTokenKeys (line 45) | function useAddTokenKeys(): (addresses: string[]) => void {
  function useTokenDatas (line 54) | function useTokenDatas(addresses: string[] | undefined): TokenData[] | u...
  function useTokenData (line 79) | function useTokenData(address: string | undefined): TokenData | undefined {
  function usePoolsForToken (line 102) | function usePoolsForToken(address: string): string[] | undefined {
  function useTokenChartData (line 134) | function useTokenChartData(address: string): TokenChartEntry[] | undefin...
  function useTokenPriceData (line 166) | function useTokenPriceData(
  function useTokenTransactions (line 234) | function useTokenTransactions(address: string): Transaction[] | undefined {

FILE: src/state/tokens/reducer.ts
  type TokenData (line 14) | type TokenData = {
  type TokenChartEntry (line 42) | interface TokenChartEntry {
  type TokensState (line 48) | interface TokensState {

FILE: src/state/tokens/updater.ts
  function Updater (line 6) | function Updater(): null {

FILE: src/state/user/actions.ts
  type SerializedToken (line 3) | interface SerializedToken {
  type SerializedPair (line 11) | interface SerializedPair {

FILE: src/state/user/hooks.tsx
  function serializeToken (line 15) | function serializeToken(token: Token): SerializedToken {
  function useIsDarkMode (line 25) | function useIsDarkMode(): boolean {
  function useDarkModeManager (line 29) | function useDarkModeManager(): [boolean, () => void] {
  function useAddUserToken (line 40) | function useAddUserToken(): (token: Token) => void {
  function useSavedTokens (line 50) | function useSavedTokens(): [string[], (address: string) => void] {
  function useSavedPools (line 62) | function useSavedPools(): [string[], (address: string) => void] {
  function useRemoveUserAddedToken (line 74) | function useRemoveUserAddedToken(): (chainId: number, address: string) =...
  function useURLWarningVisible (line 84) | function useURLWarningVisible(): boolean {
  function useURLWarningToggle (line 88) | function useURLWarningToggle(): () => void {

FILE: src/state/user/reducer.ts
  type UserState (line 19) | interface UserState {
  function pairKey (line 46) | function pairKey(token0Address: string, token1Address: string) {

FILE: src/state/user/updater.tsx
  function Updater (line 6) | function Updater(): null {

FILE: src/theme/DarkModeQueryParamReader.tsx
  function DarkModeQueryParamReader (line 8) | function DarkModeQueryParamReader(): null {

FILE: src/theme/components.tsx
  function ExternalLink (line 210) | function ExternalLink({
  function ExternalLinkIcon (line 229) | function ExternalLinkIcon({
  function BackArrow (line 270) | function BackArrow({ to }: { to: string }) {

FILE: src/theme/index.tsx
  constant MEDIA_WIDTHS (line 14) | const MEDIA_WIDTHS = {
  function colors (line 36) | function colors(darkMode: boolean): Colors {
  function theme (line 94) | function theme(darkMode: boolean): DefaultTheme {
  function ThemeProvider (line 122) | function ThemeProvider({ children }: { children: React.ReactNode }) {
  constant TYPE (line 134) | const TYPE = {
  method main (line 135) | main(props: TextProps) {
  method link (line 138) | link(props: TextProps) {
  method label (line 141) | label(props: TextProps) {
  method black (line 144) | black(props: TextProps) {
  method white (line 147) | white(props: TextProps) {
  method body (line 150) | body(props: TextProps) {
  method largeHeader (line 153) | largeHeader(props: TextProps) {
  method mediumHeader (line 156) | mediumHeader(props: TextProps) {
  method subHeader (line 159) | subHeader(props: TextProps) {
  method small (line 162) | small(props: TextProps) {
  method blue (line 165) | blue(props: TextProps) {
  method yellow (line 168) | yellow(props: TextProps) {
  method darkGray (line 171) | darkGray(props: TextProps) {
  method gray (line 174) | gray(props: TextProps) {
  method italic (line 177) | italic(props: TextProps) {
  method error (line 180) | error({ error, ...props }: { error: boolean } & TextProps) {

FILE: src/theme/rebass.d.ts
  type BoxProps (line 11) | interface BoxProps extends BoxP {
  type ButtonProps (line 14) | interface ButtonProps extends ButtonP {
  type FlexProps (line 17) | interface FlexProps extends FlexP {
  type LinkProps (line 20) | interface LinkProps extends LinkP {
  type TextProps (line 23) | interface TextProps extends TextP {
  type IntrinsicAttributes (line 30) | interface IntrinsicAttributes {

FILE: src/theme/styled.d.ts
  type Color (line 3) | type Color = string
  type Colors (line 4) | interface Colors {
  type Grids (line 54) | interface Grids {
  type DefaultTheme (line 61) | interface DefaultTheme extends Colors {

FILE: src/types/index.ts
  type Block (line 1) | interface Block {
  type VolumeWindow (line 6) | enum VolumeWindow {
  type ChartDayData (line 12) | interface ChartDayData {
  type GenericChartEntry (line 18) | interface GenericChartEntry {
  type TransactionType (line 23) | enum TransactionType {
  type Transaction (line 29) | type Transaction = {
  type PriceChartEntry (line 46) | type PriceChartEntry = {

FILE: src/utils/chunkArray.ts
  function chunkArray (line 3) | function chunkArray<T>(items: T[], maxChunkSize: number): T[][] {

FILE: src/utils/contenthashToUri.ts
  function hexToUint8Array (line 5) | function hexToUint8Array(hex: string): Uint8Array {
  constant UTF_8_DECODER (line 15) | const UTF_8_DECODER = new TextDecoder()
  function contenthashToUri (line 21) | function contenthashToUri(contenthash: string): string {

FILE: src/utils/currencyId.ts
  function currencyId (line 3) | function currencyId(currency: Currency): string {

FILE: src/utils/date.ts
  function unixToDate (line 3) | function unixToDate(unix: number, format = 'YYYY-MM-DD'): string {

FILE: src/utils/getLibrary.ts
  function getLibrary (line 3) | function getLibrary(provider: any): Web3Provider {

FILE: src/utils/getTokenList.ts
  function getTokenList (line 13) | async function getTokenList(listUrl: string): Promise<TokenList> {

FILE: src/utils/index.ts
  function isAddress (line 12) | function isAddress(value: any): string | false {
  constant BLOCK_EXPLORER_PREFIXES (line 20) | const BLOCK_EXPLORER_PREFIXES: { [chainId: number]: string } = {
  type ExplorerDataType (line 37) | enum ExplorerDataType {
  function getExplorerLink (line 51) | function getExplorerLink(chainId: number, data: string, type: ExplorerDa...
  function shortenAddress (line 74) | function shortenAddress(address: string, chars = 4): string {
  function calculateGasMargin (line 83) | function calculateGasMargin(value: BigNumber): BigNumber {
  function basisPointsToPercent (line 88) | function basisPointsToPercent(num: number): Percent {
  constant ONE (line 92) | const ONE = new Fraction(1, 1)
  function calculateSlippageAmount (line 93) | function calculateSlippageAmount(value: CurrencyAmount<Currency>, slippa...
  function getSigner (line 98) | function getSigner(library: Web3Provider, account: string): JsonRpcSigner {
  function getProviderOrSigner (line 103) | function getProviderOrSigner(library: Web3Provider, account?: string): W...
  function getContract (line 108) | function getContract(address: string, ABI: any, library: Web3Provider, a...
  function escapeRegExp (line 116) | function escapeRegExp(string: string): string {
  function isTokenOnList (line 120) | function isTokenOnList(tokenAddressMap: TokenAddressMap, token?: Token):...
  function feeTierPercent (line 124) | function feeTierPercent(fee: number): string {
  function notEmpty (line 128) | function notEmpty<TValue>(value: TValue | null | undefined): value is TV...

FILE: src/utils/isZero.ts
  function isZero (line 5) | function isZero(hexNumberString: string) {

FILE: src/utils/listSort.ts
  function sortByListPriority (line 4) | function sortByListPriority(urlA: string, urlB: string) {

FILE: src/utils/listVersionLabel.ts
  function listVersionLabel (line 3) | function listVersionLabel(version: Version): string {

FILE: src/utils/networkPrefix.ts
  function networkPrefix (line 3) | function networkPrefix(activeNewtork: NetworkInfo) {

FILE: src/utils/parseENSAddress.ts
  constant ENS_NAME_REGEX (line 1) | const ENS_NAME_REGEX = /^(([a-zA-Z0-9]+(-[a-zA-Z0-9]+)*\.)+)eth(\/.*)?$/
  function parseENSAddress (line 3) | function parseENSAddress(ensAddress: string): { ensName: string; ensPath...

FILE: src/utils/queries.ts
  function splitQuery (line 12) | async function splitQuery<Type extends object>(
  function useDeltaTimestamps (line 50) | function useDeltaTimestamps(): [number, number, number] {

FILE: src/utils/resolveENSContentHash.ts
  constant REGISTRAR_ABI (line 5) | const REGISTRAR_ABI = [
  constant REGISTRAR_ADDRESS (line 26) | const REGISTRAR_ADDRESS = '0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e'
  constant RESOLVER_ABI (line 28) | const RESOLVER_ABI = [
  function resolverContract (line 53) | function resolverContract(resolverAddress: string, provider: Provider): ...
  function resolveENSContentHash (line 62) | async function resolveENSContentHash(ensName: string, provider: Provider...

FILE: src/utils/retry.test.ts
  function makeFn (line 4) | function makeFn<T>(fails: number, result: T, retryable = true): () => Pr...
  function checkTime (line 45) | async function checkTime(fn: () => Promise<any>, min: number, max: numbe...

FILE: src/utils/retry.ts
  function wait (line 1) | function wait(ms: number): Promise<void> {
  function waitRandom (line 5) | function waitRandom(min: number, max: number): Promise<void> {
  class CancelledError (line 12) | class CancelledError extends Error {
    method constructor (line 13) | constructor() {
  class RetryableError (line 21) | class RetryableError extends Error {}
  function retry (line 30) | function retry<T>(

FILE: src/utils/tokens.ts
  type SerializedToken (line 5) | interface SerializedToken {
  function serializeToken (line 13) | function serializeToken(token: Token): SerializedToken {
  function formatTokenSymbol (line 23) | function formatTokenSymbol(address: string, symbol: string, activeNetwor...
  function formatTokenName (line 40) | function formatTokenName(address: string, name: string, activeNetwork?: ...

FILE: src/utils/uriToHttp.ts
  function uriToHttp (line 5) | function uriToHttp(uri: string): string[] {

FILE: src/utils/useDebouncedChangeHandler.tsx
  function useDebouncedChangeHandler (line 9) | function useDebouncedChangeHandler<T>(
Condensed preview — 207 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (1,762K chars).
[
  {
    "path": ".eslintrc.json",
    "chars": 746,
    "preview": "{\n  \"parser\": \"@typescript-eslint/parser\",\n  \"parserOptions\": {\n    \"ecmaVersion\": 2020,\n    \"sourceType\": \"module\",\n   "
  },
  {
    "path": ".github/ISSUE_TEMPLATE/bug-report.md",
    "chars": 494,
    "preview": "---\nname: Bug Report\nabout: Describe an issue in the Uniswap Interface\ntitle: ''\nlabels: bug\nassignees: ''\n---\n\n**Bug De"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/config.yml",
    "chars": 306,
    "preview": "blank_issues_enabled: false\ncontact_links:\n  - name: Support\n    url: https://discord.gg/FCfyBSbCU5\n    about: Please as"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/feature-request.md",
    "chars": 634,
    "preview": "---\nname: Feature Request\nabout: Suggest an idea for improving the UX of the Uniswap Interface\ntitle: ''\nlabels: 'improv"
  },
  {
    "path": ".github/workflows/semgrep.yml",
    "chars": 548,
    "preview": "name: Semgrep\non:\n  workflow_dispatch: {}\n  pull_request: {}\n  push:\n    branches:\n      - main\n      - master\n  schedul"
  },
  {
    "path": ".gitignore",
    "chars": 38,
    "preview": "node_modules\n.DS_Store\nbuild\n.vscode/\n"
  },
  {
    "path": ".nvmrc",
    "chars": 4,
    "preview": "v18\n"
  },
  {
    "path": ".prettierrc",
    "chars": 87,
    "preview": "{\n  \"semi\": false,\n  \"singleQuote\": true,\n  \"printWidth\": 120,\n  \"endOfLine\": \"auto\"\n}\n"
  },
  {
    "path": ".yarnrc",
    "chars": 20,
    "preview": "ignore-scripts true\n"
  },
  {
    "path": "LICENSE",
    "chars": 35149,
    "preview": "                    GNU GENERAL PUBLIC LICENSE\n                       Version 3, 29 June 2007\n\n Copyright (C) 2007 Free "
  },
  {
    "path": "README.md",
    "chars": 323,
    "preview": "## Uniswap Info V3\n\nAn open sourced interface for Uniswap V3 analytics. \n\nInfo URL: https://info.uniswap.org/#/\n\n## Deve"
  },
  {
    "path": "cypress.json",
    "chars": 189,
    "preview": "{\n  \"baseUrl\": \"http://localhost:3000\",\n  \"pluginsFile\": false,\n  \"fixturesFolder\": false,\n  \"supportFile\": \"cypress/sup"
  },
  {
    "path": "package.json",
    "chars": 5111,
    "preview": "{\n  \"name\": \"@uniswap/interface\",\n  \"description\": \"Uniswap Interface\",\n  \"homepage\": \".\",\n  \"private\": true,\n  \"devDepe"
  },
  {
    "path": "public/451.html",
    "chars": 200,
    "preview": "<!DOCTYPE html>\n<html lang=\"en\">\n  <head>\n    <meta charset=\"utf-8\" />\n    <title>Unavailable For Legal Reasons</title>\n"
  },
  {
    "path": "public/index.html",
    "chars": 1861,
    "preview": "<!DOCTYPE html>\n<html lang=\"en\">\n  <head>\n    <meta charset=\"utf-8\" />\n    <link rel=\"shortcut icon\" type=\"image/png\" hr"
  },
  {
    "path": "public/locales/de.json",
    "chars": 4329,
    "preview": "{\n  \"noWallet\": \"Keine Ethereum-Wallet gefunden\",\n  \"wrongNetwork\": \"Du bist auf dem falschen Netzwerk.\",\n  \"switchNetwo"
  },
  {
    "path": "public/locales/en.json",
    "chars": 5065,
    "preview": "{\n  \"noWallet\": \"No Ethereum wallet found\",\n  \"wrongNetwork\": \"You are on the wrong network\",\n  \"switchNetwork\": \"Please"
  },
  {
    "path": "public/locales/es-AR.json",
    "chars": 3652,
    "preview": "{\n  \"noWallet\": \"No se encontró billetera de Ethereum\",\n  \"wrongNetwork\": \"Te encontrás en la red equivocada\",\n  \"switch"
  },
  {
    "path": "public/locales/es-US.json",
    "chars": 3669,
    "preview": "{\n  \"noWallet\": \"No se ha encontrado billetera de Ethereum\",\n  \"wrongNetwork\": \"Se encuentra en la red equivocada\",\n  \"s"
  },
  {
    "path": "public/locales/it-IT.json",
    "chars": 4200,
    "preview": "{\n  \"noWallet\": \"Wallet Ethereum non trovato\",\n  \"wrongNetwork\": \"Sei connesso alla rete sbagliata\",\n  \"switchNetwork\": "
  },
  {
    "path": "public/locales/iw.json",
    "chars": 2920,
    "preview": "{\n  \"noWallet\": \"לא נמצא ארנק\",\n  \"wrongNetwork\": \"נבחרה רשת לא נכונה\",\n  \"switchNetwork\": \"{{ correctNetwork }} יש צורך"
  },
  {
    "path": "public/locales/ro.json",
    "chars": 4730,
    "preview": "{\n  \"noWallet\": \"Niciun portofel Ethereum găsit\",\n  \"wrongNetwork\": \"Nu ești conectat la rețeaua corectă\",\n  \"switchNetw"
  },
  {
    "path": "public/locales/ru.json",
    "chars": 3501,
    "preview": "{\n  \"noWallet\": \"Кошелек эфира не найден\",\n  \"wrongNetwork\": \"Некорректная сеть\",\n  \"switchNetwork\": \"Пожалуйста, перейд"
  },
  {
    "path": "public/locales/vi.json",
    "chars": 4161,
    "preview": "{\n  \"noWallet\": \"Không tìm thấy ví tiền Ethereum\",\n  \"wrongNetwork\": \"Kết nối mạng không đúng\",\n  \"switchNetwork\": \"Vui "
  },
  {
    "path": "public/locales/zh-CN.json",
    "chars": 2279,
    "preview": "{\n  \"noWallet\": \"未发现以太钱包\",\n  \"wrongNetwork\": \"网络错误\",\n  \"switchNetwork\": \"请切换到 {{ correctNetwork }}\",\n  \"installWeb3Mobil"
  },
  {
    "path": "public/locales/zh-TW.json",
    "chars": 2290,
    "preview": "{\n  \"noWallet\": \"未偵測到以太坊錢包\",\n  \"wrongNetwork\": \"你位在錯誤的網路\",\n  \"switchNetwork\": \"請切換到 {{ correctNetwork }}\",\n  \"installWeb"
  },
  {
    "path": "public/manifest.json",
    "chars": 470,
    "preview": "{\n  \"short_name\": \"Uniswap\",\n  \"name\": \"Uniswap\",\n  \"icons\": [\n    {\n      \"src\": \"./images/192x192_App_Icon.png\",\n     "
  },
  {
    "path": "schema.json",
    "chars": 998957,
    "preview": "{\n  \"__schema\": {\n    \"description\": null,\n    \"queryType\": {\n      \"name\": \"Query\"\n    },\n    \"mutationType\": null,\n   "
  },
  {
    "path": "src/apollo/client.ts",
    "chars": 8774,
    "preview": "import { ApolloClient, InMemoryCache } from '@apollo/client'\n\nexport const healthClient = new ApolloClient({\n  uri: 'htt"
  },
  {
    "path": "src/components/BarChart/alt.tsx",
    "chars": 5004,
    "preview": "import React, { Dispatch, SetStateAction, ReactNode } from 'react'\nimport { BarChart, ResponsiveContainer, XAxis, Toolti"
  },
  {
    "path": "src/components/BarChart/index.tsx",
    "chars": 5911,
    "preview": "import React, { useRef, useState, useEffect, useCallback, Dispatch, SetStateAction, ReactNode } from 'react'\nimport { cr"
  },
  {
    "path": "src/components/Button/index.tsx",
    "chars": 11527,
    "preview": "import React, { HTMLAttributes } from 'react'\nimport styled from 'styled-components'\nimport { darken, lighten } from 'po"
  },
  {
    "path": "src/components/CandleChart/index.tsx",
    "chars": 5455,
    "preview": "import React, { useRef, useState, useEffect, useCallback, Dispatch, SetStateAction, ReactNode } from 'react'\nimport { cr"
  },
  {
    "path": "src/components/Card/index.tsx",
    "chars": 1924,
    "preview": "import styled from 'styled-components'\nimport { Box } from 'rebass/styled-components'\n\nconst Card = styled(Box)<{\n  widt"
  },
  {
    "path": "src/components/Column/index.tsx",
    "chars": 657,
    "preview": "import styled from 'styled-components'\n\nconst Column = styled.div`\n  display: flex;\n  flex-direction: column;\n  justify-"
  },
  {
    "path": "src/components/Confetti/index.tsx",
    "chars": 935,
    "preview": "import React from 'react'\nimport ReactConfetti from 'react-confetti'\nimport { useWindowSize } from '../../hooks/useWindo"
  },
  {
    "path": "src/components/CurrencyLogo/index.tsx",
    "chars": 5043,
    "preview": "import React, { useMemo } from 'react'\nimport styled from 'styled-components'\nimport { isAddress } from 'utils'\nimport L"
  },
  {
    "path": "src/components/DensityChart/CurrentPriceLabel.tsx",
    "chars": 2075,
    "preview": "import React from 'react'\nimport { ChartEntry } from './index'\nimport { PoolData } from 'state/pools/reducer'\nimport use"
  },
  {
    "path": "src/components/DensityChart/CustomToolTip.tsx",
    "chars": 2496,
    "preview": "import React from 'react'\nimport { PoolData } from 'state/pools/reducer'\nimport styled from 'styled-components'\nimport {"
  },
  {
    "path": "src/components/DensityChart/index.tsx",
    "chars": 9915,
    "preview": "import { fetchTicksSurroundingPrice, TickProcessed } from 'data/pools/tickData'\nimport React, { useEffect, useMemo, useS"
  },
  {
    "path": "src/components/DoubleLogo/index.tsx",
    "chars": 879,
    "preview": "import React from 'react'\nimport styled from 'styled-components'\nimport CurrencyLogo from '../CurrencyLogo'\n\nconst Wrapp"
  },
  {
    "path": "src/components/FormattedCurrencyAmount/index.tsx",
    "chars": 633,
    "preview": "import React from 'react'\nimport { CurrencyAmount, Fraction, Token } from '@uniswap/sdk-core'\nimport JSBI from 'jsbi'\n\nc"
  },
  {
    "path": "src/components/Header/Polling.tsx",
    "chars": 2883,
    "preview": "import React, { useState, useEffect } from 'react'\nimport styled, { keyframes } from 'styled-components'\nimport { TYPE, "
  },
  {
    "path": "src/components/Header/TopBar.tsx",
    "chars": 1862,
    "preview": "import React from 'react'\nimport styled from 'styled-components'\nimport { AutoRow, RowBetween, RowFixed } from 'componen"
  },
  {
    "path": "src/components/Header/URLWarning.tsx",
    "chars": 1610,
    "preview": "import React from 'react'\nimport styled from 'styled-components'\n\nimport { AlertTriangle, X } from 'react-feather'\nimpor"
  },
  {
    "path": "src/components/Header/index.tsx",
    "chars": 4706,
    "preview": "import React from 'react'\nimport { NavLink, useLocation } from 'react-router-dom'\nimport { darken } from 'polished'\nimpo"
  },
  {
    "path": "src/components/HoverInlineText/index.tsx",
    "chars": 1703,
    "preview": "import Tooltip from 'components/Tooltip'\nimport React, { useState } from 'react'\nimport styled from 'styled-components'\n"
  },
  {
    "path": "src/components/LineChart/alt.tsx",
    "chars": 3643,
    "preview": "import React, { Dispatch, SetStateAction, ReactNode } from 'react'\nimport { ResponsiveContainer, XAxis, Tooltip, AreaCha"
  },
  {
    "path": "src/components/LineChart/index.tsx",
    "chars": 6057,
    "preview": "import React, { useRef, useState, useEffect, useCallback, Dispatch, SetStateAction, ReactNode } from 'react'\nimport { cr"
  },
  {
    "path": "src/components/ListLogo/index.tsx",
    "chars": 575,
    "preview": "import React from 'react'\nimport styled from 'styled-components'\nimport useHttpLocations from '../../hooks/useHttpLocati"
  },
  {
    "path": "src/components/Loader/index.tsx",
    "chars": 2853,
    "preview": "import React from 'react'\nimport v3 from '../../assets/images/whitev3.svg'\nimport styled, { keyframes, css } from 'style"
  },
  {
    "path": "src/components/Logo/index.tsx",
    "chars": 1020,
    "preview": "import React, { useState } from 'react'\nimport { HelpCircle } from 'react-feather'\nimport { ImageProps } from 'rebass'\ni"
  },
  {
    "path": "src/components/Menu/NetworkDropdown.tsx",
    "chars": 4335,
    "preview": "import { RowFixed, RowBetween } from 'components/Row'\nimport {\n  AvalancheNetworkInfo,\n  BNBNetworkInfo,\n  CeloNetworkIn"
  },
  {
    "path": "src/components/Menu/index.tsx",
    "chars": 2814,
    "preview": "import React, { useRef, useState } from 'react'\nimport { BookOpen, Code, Info, MessageCircle } from 'react-feather'\nimpo"
  },
  {
    "path": "src/components/Modal/index.tsx",
    "chars": 3935,
    "preview": "import React from 'react'\nimport styled, { css } from 'styled-components'\nimport { animated, useTransition, useSpring } "
  },
  {
    "path": "src/components/NumericalInput/index.tsx",
    "chars": 2737,
    "preview": "import React from 'react'\nimport styled from 'styled-components'\nimport { escapeRegExp } from '../../utils'\n\nconst Style"
  },
  {
    "path": "src/components/Percent/index.tsx",
    "chars": 1409,
    "preview": "import React from 'react'\nimport { TYPE } from 'theme'\nimport styled from 'styled-components'\n\nconst Wrapper = styled(TY"
  },
  {
    "path": "src/components/Popover/index.tsx",
    "chars": 3039,
    "preview": "import { Placement } from '@popperjs/core'\nimport { transparentize } from 'polished'\nimport React, { useCallback, useSta"
  },
  {
    "path": "src/components/Popups/ListUpdatePopup.tsx",
    "chars": 3806,
    "preview": "import { diffTokenLists, TokenList } from '@uniswap/token-lists'\nimport React, { useCallback, useMemo } from 'react'\nimp"
  },
  {
    "path": "src/components/Popups/PopupItem.tsx",
    "chars": 2311,
    "preview": "import React, { useCallback, useContext, useEffect } from 'react'\nimport { X } from 'react-feather'\nimport { useSpring }"
  },
  {
    "path": "src/components/Popups/index.tsx",
    "chars": 2025,
    "preview": "import React from 'react'\nimport styled from 'styled-components'\nimport { useActivePopups } from '../../state/applicatio"
  },
  {
    "path": "src/components/QuestionHelper/index.tsx",
    "chars": 2006,
    "preview": "import React, { useCallback, useState } from 'react'\nimport { HelpCircle as Question } from 'react-feather'\nimport style"
  },
  {
    "path": "src/components/Row/index.tsx",
    "chars": 1332,
    "preview": "import styled from 'styled-components'\nimport { Box } from 'rebass/styled-components'\n\nconst Row = styled(Box)<{\n  width"
  },
  {
    "path": "src/components/Search/index.tsx",
    "chars": 13001,
    "preview": "import React, { useRef, useCallback, useState, useEffect, useMemo } from 'react'\nimport styled from 'styled-components'\n"
  },
  {
    "path": "src/components/Text/index.ts",
    "chars": 610,
    "preview": "import styled from 'styled-components'\nimport { TYPE } from 'theme'\n\n// responsive text\nexport const Label = styled(TYPE"
  },
  {
    "path": "src/components/Toggle/ListToggle.tsx",
    "chars": 1438,
    "preview": "import React from 'react'\nimport styled from 'styled-components'\nimport { TYPE } from '../../theme'\n\nconst Wrapper = sty"
  },
  {
    "path": "src/components/Toggle/MultiToggle.tsx",
    "chars": 1485,
    "preview": "import React from 'react'\nimport styled from 'styled-components'\n\nexport const ToggleWrapper = styled.button<{ width?: s"
  },
  {
    "path": "src/components/Toggle/index.tsx",
    "chars": 2893,
    "preview": "import React from 'react'\nimport styled from 'styled-components'\n\nconst ToggleElement = styled.span<{ isActive?: boolean"
  },
  {
    "path": "src/components/Tooltip/index.tsx",
    "chars": 902,
    "preview": "import React, { useCallback, useState } from 'react'\nimport styled from 'styled-components'\nimport Popover, { PopoverPro"
  },
  {
    "path": "src/components/TransactionsTable/index.tsx",
    "chars": 9252,
    "preview": "import React, { useCallback, useState, useMemo, useEffect } from 'react'\nimport styled from 'styled-components'\nimport {"
  },
  {
    "path": "src/components/pools/PoolTable.tsx",
    "chars": 6846,
    "preview": "import React, { useCallback, useState, useMemo, useEffect } from 'react'\nimport styled from 'styled-components'\nimport {"
  },
  {
    "path": "src/components/pools/TopPoolMovers.tsx",
    "chars": 2391,
    "preview": "import React, { useMemo } from 'react'\nimport styled from 'styled-components'\nimport { ScrollableX, GreyCard, GreyBadge "
  },
  {
    "path": "src/components/shared/index.tsx",
    "chars": 737,
    "preview": "import styled from 'styled-components'\n\nexport const PageButtons = styled.div`\n  width: 100%;\n  display: flex;\n  align-i"
  },
  {
    "path": "src/components/tokens/TokenTable.tsx",
    "chars": 7713,
    "preview": "import React, { useState, useMemo, useCallback, useEffect } from 'react'\nimport styled from 'styled-components'\nimport {"
  },
  {
    "path": "src/components/tokens/TopTokenMovers.tsx",
    "chars": 3110,
    "preview": "import React, { useMemo, useRef, useState, useEffect } from 'react'\nimport styled from 'styled-components'\nimport { useA"
  },
  {
    "path": "src/constants/abis/argent-wallet-detector.json",
    "chars": 3147,
    "preview": "[\n  {\n    \"inputs\": [\n      { \"internalType\": \"bytes32[]\", \"name\": \"_codes\", \"type\": \"bytes32[]\" },\n      { \"internalTyp"
  },
  {
    "path": "src/constants/abis/argent-wallet-detector.ts",
    "chars": 243,
    "preview": "import ARGENT_WALLET_DETECTOR_ABI from './argent-wallet-detector.json'\n\nconst ARGENT_WALLET_DETECTOR_MAINNET_ADDRESS = '"
  },
  {
    "path": "src/constants/abis/ens-public-resolver.json",
    "chars": 15461,
    "preview": "[\n  {\n    \"inputs\": [\n      {\n        \"internalType\": \"contract ENS\",\n        \"name\": \"_ens\",\n        \"type\": \"address\"\n"
  },
  {
    "path": "src/constants/abis/ens-registrar.json",
    "chars": 7943,
    "preview": "[\n  {\n    \"inputs\": [\n      {\n        \"internalType\": \"contract ENS\",\n        \"name\": \"_old\",\n        \"type\": \"address\"\n"
  },
  {
    "path": "src/constants/abis/erc20.json",
    "chars": 2953,
    "preview": "[\n  {\n    \"constant\": true,\n    \"inputs\": [],\n    \"name\": \"name\",\n    \"outputs\": [{ \"name\": \"\", \"type\": \"string\" }],\n   "
  },
  {
    "path": "src/constants/abis/erc20.ts",
    "chars": 350,
    "preview": "import { Interface } from '@ethersproject/abi'\nimport ERC20_ABI from './erc20.json'\nimport ERC20_BYTES32_ABI from './erc"
  },
  {
    "path": "src/constants/abis/erc20_bytes32.json",
    "chars": 467,
    "preview": "[\n  {\n    \"constant\": true,\n    \"inputs\": [],\n    \"name\": \"name\",\n    \"outputs\": [\n      {\n        \"name\": \"\",\n        \""
  },
  {
    "path": "src/constants/abis/migrator.json",
    "chars": 1039,
    "preview": "[\n  {\n    \"inputs\": [\n      {\n        \"internalType\": \"address\",\n        \"name\": \"_factoryV1\",\n        \"type\": \"address\""
  },
  {
    "path": "src/constants/abis/migrator.ts",
    "chars": 157,
    "preview": "import MIGRATOR_ABI from './migrator.json'\n\nconst MIGRATOR_ADDRESS = '0x16D4F26C15f3658ec65B1126ff27DD3dF2a2996b'\n\nexpor"
  },
  {
    "path": "src/constants/abis/staking-rewards.ts",
    "chars": 485,
    "preview": "import { Interface } from '@ethersproject/abi'\nimport { abi as STAKING_REWARDS_ABI } from '@uniswap/liquidity-staker/bui"
  },
  {
    "path": "src/constants/abis/unisocks.json",
    "chars": 7674,
    "preview": "[\n  {\n    \"name\": \"Transfer\",\n    \"inputs\": [\n      {\n        \"type\": \"address\",\n        \"name\": \"_from\",\n        \"index"
  },
  {
    "path": "src/constants/abis/weth.json",
    "chars": 4612,
    "preview": "[\n  {\n    \"constant\": true,\n    \"inputs\": [],\n    \"name\": \"name\",\n    \"outputs\": [\n      {\n        \"name\": \"\",\n        \""
  },
  {
    "path": "src/constants/chains.ts",
    "chars": 4002,
    "preview": "import { ChainId, SUPPORTED_CHAINS, SupportedChainsType } from '@uniswap/sdk-core'\n\nexport const CHAIN_IDS_TO_NAMES = {\n"
  },
  {
    "path": "src/constants/index.ts",
    "chars": 2812,
    "preview": "import { BigNumber } from '@ethersproject/bignumber'\nimport { Connector } from '@web3-react/types'\nimport ms from 'ms'\n\n"
  },
  {
    "path": "src/constants/intervals.ts",
    "chars": 240,
    "preview": "/**\n * Constanst for historical data fetching.\n *\n */\n\nimport { OpUnitType } from 'dayjs'\n\nexport const ONE_HOUR_SECONDS"
  },
  {
    "path": "src/constants/lists.ts",
    "chars": 1038,
    "preview": "// used to mark unsupported tokens, these are hosted lists of unsupported tokens\n\nexport const UNSUPPORTED_LIST_URLS: st"
  },
  {
    "path": "src/constants/multicall/abi.json",
    "chars": 2533,
    "preview": "[\n  {\n    \"constant\": true,\n    \"inputs\": [],\n    \"name\": \"getCurrentBlockTimestamp\",\n    \"outputs\": [\n      {\n        \""
  },
  {
    "path": "src/constants/multicall/index.ts",
    "chars": 65,
    "preview": "import MULTICALL_ABI from './abi.json'\n\nexport { MULTICALL_ABI }\n"
  },
  {
    "path": "src/constants/networks.ts",
    "chars": 3108,
    "preview": "import OPTIMISM_LOGO_URL from '../assets/images/optimism.svg'\nimport ARBITRUM_LOGO_URL from '../assets/images/arbitrum.s"
  },
  {
    "path": "src/constants/tokenLists/uniswap-v2-unsupported.tokenlist.json",
    "chars": 627,
    "preview": "{\n  \"name\": \"Uniswap V2 Unsupported List\",\n  \"timestamp\": \"2021-01-05T20:47:02.923Z\",\n  \"version\": {\n    \"major\": 1,\n   "
  },
  {
    "path": "src/data/application/index.ts",
    "chars": 2047,
    "preview": "import { useActiveNetworkVersion } from 'state/application/hooks'\nimport { healthClient } from './../../apollo/client'\ni"
  },
  {
    "path": "src/data/combined/pools.ts",
    "chars": 6977,
    "preview": "import { useQuery } from '@apollo/client'\nimport gql from 'graphql-tag'\nimport { useDeltaTimestamps } from 'utils/querie"
  },
  {
    "path": "src/data/pools/chartData.ts",
    "chars": 3660,
    "preview": "import dayjs from 'dayjs'\nimport utc from 'dayjs/plugin/utc'\nimport weekOfYear from 'dayjs/plugin/weekOfYear'\nimport gql"
  },
  {
    "path": "src/data/pools/poolData.ts",
    "chars": 8161,
    "preview": "import { useQuery } from '@apollo/client'\nimport gql from 'graphql-tag'\nimport { useDeltaTimestamps } from 'utils/querie"
  },
  {
    "path": "src/data/pools/tickData.ts",
    "chars": 10157,
    "preview": "import gql from 'graphql-tag'\nimport JSBI from 'jsbi'\nimport keyBy from 'lodash.keyby'\nimport { TickMath, tickToPrice } "
  },
  {
    "path": "src/data/pools/topPools.ts",
    "chars": 1330,
    "preview": "import { useMemo } from 'react'\nimport { useQuery } from '@apollo/client'\nimport gql from 'graphql-tag'\nimport { useActi"
  },
  {
    "path": "src/data/pools/transactions.ts",
    "chars": 4703,
    "preview": "import { ApolloClient, NormalizedCacheObject } from '@apollo/client'\nimport gql from 'graphql-tag'\nimport { Transaction,"
  },
  {
    "path": "src/data/protocol/chart.ts",
    "chars": 4933,
    "preview": "import { ChartDayData } from '../../types/index'\nimport { useState, useEffect } from 'react'\nimport dayjs from 'dayjs'\ni"
  },
  {
    "path": "src/data/protocol/derived.ts",
    "chars": 5260,
    "preview": "import { SupportedNetwork } from 'constants/networks'\nimport { fetchPoolChartData } from 'data/pools/chartData'\nimport {"
  },
  {
    "path": "src/data/protocol/overview.ts",
    "chars": 4641,
    "preview": "import { getPercentChange } from '../../utils/data'\nimport { ProtocolData } from '../../state/protocol/reducer'\nimport g"
  },
  {
    "path": "src/data/protocol/transactions.ts",
    "chars": 4465,
    "preview": "import { ApolloClient, NormalizedCacheObject } from '@apollo/client'\nimport gql from 'graphql-tag'\nimport { Transaction,"
  },
  {
    "path": "src/data/search/index.ts",
    "chars": 6638,
    "preview": "import { useAllTokenData } from 'state/tokens/hooks'\nimport { TokenData } from 'state/tokens/reducer'\nimport { useFetche"
  },
  {
    "path": "src/data/tokens/chartData.ts",
    "chars": 3314,
    "preview": "import { ApolloClient, NormalizedCacheObject } from '@apollo/client'\nimport dayjs from 'dayjs'\nimport utc from 'dayjs/pl"
  },
  {
    "path": "src/data/tokens/poolsForToken.ts",
    "chars": 1533,
    "preview": "import { ApolloClient, NormalizedCacheObject } from '@apollo/client'\nimport gql from 'graphql-tag'\n\nexport const POOLS_F"
  },
  {
    "path": "src/data/tokens/priceData.ts",
    "chars": 3835,
    "preview": "import { ApolloClient, NormalizedCacheObject } from '@apollo/client'\nimport dayjs from 'dayjs'\nimport utc from 'dayjs/pl"
  },
  {
    "path": "src/data/tokens/tokenData.ts",
    "chars": 6562,
    "preview": "import { getPercentChange } from './../../utils/data'\nimport { useQuery } from '@apollo/client'\nimport gql from 'graphql"
  },
  {
    "path": "src/data/tokens/topTokens.ts",
    "chars": 940,
    "preview": "import { useMemo } from 'react'\nimport { useQuery } from '@apollo/client'\nimport gql from 'graphql-tag'\nimport { useClie"
  },
  {
    "path": "src/data/tokens/transactions.ts",
    "chars": 9083,
    "preview": "import { ApolloClient, NormalizedCacheObject } from '@apollo/client'\nimport gql from 'graphql-tag'\nimport { Transaction,"
  },
  {
    "path": "src/hooks/chart.ts",
    "chars": 1290,
    "preview": "import { useMemo } from 'react'\nimport { PoolChartEntry } from 'state/pools/reducer'\nimport { TokenChartEntry } from 'st"
  },
  {
    "path": "src/hooks/useAppDispatch.ts",
    "chars": 261,
    "preview": "import { TypedUseSelectorHook, useDispatch, useSelector } from 'react-redux'\nimport { AppDispatch, AppState } from 'stat"
  },
  {
    "path": "src/hooks/useBlocksFromTimestamps.ts",
    "chars": 3339,
    "preview": "import gql from 'graphql-tag'\nimport { useState, useEffect, useMemo } from 'react'\nimport { splitQuery } from 'utils/que"
  },
  {
    "path": "src/hooks/useCMCLink.ts",
    "chars": 790,
    "preview": "import { useState, useEffect } from 'react'\n\n// endpoint to check asset exists\nconst cmcEndpoint = 'https://3rdparty-api"
  },
  {
    "path": "src/hooks/useColor.ts",
    "chars": 2256,
    "preview": "import { useState, useLayoutEffect, useMemo } from 'react'\nimport { shade } from 'polished'\nimport Vibrant from 'node-vi"
  },
  {
    "path": "src/hooks/useCopyClipboard.ts",
    "chars": 641,
    "preview": "import copy from 'copy-to-clipboard'\nimport { useCallback, useEffect, useState } from 'react'\n\nexport default function u"
  },
  {
    "path": "src/hooks/useDebounce.ts",
    "chars": 711,
    "preview": "import { useEffect, useState } from 'react'\n\n// modified from https://usehooks.com/useDebounce/\nexport default function "
  },
  {
    "path": "src/hooks/useEthPrices.ts",
    "chars": 3441,
    "preview": "import { useBlocksFromTimestamps } from 'hooks/useBlocksFromTimestamps'\nimport { useDeltaTimestamps } from 'utils/querie"
  },
  {
    "path": "src/hooks/useFetchListCallback.ts",
    "chars": 1176,
    "preview": "import { nanoid } from '@reduxjs/toolkit'\nimport { TokenList } from '@uniswap/token-lists'\nimport { useCallback } from '"
  },
  {
    "path": "src/hooks/useHttpLocations.ts",
    "chars": 230,
    "preview": "import { useMemo } from 'react'\nimport uriToHttp from '../utils/uriToHttp'\n\nexport default function useHttpLocations(uri"
  },
  {
    "path": "src/hooks/useInterval.ts",
    "chars": 626,
    "preview": "import { useEffect, useRef } from 'react'\n\nexport default function useInterval(callback: () => void, delay: null | numbe"
  },
  {
    "path": "src/hooks/useIsWindowVisible.ts",
    "chars": 786,
    "preview": "import { useCallback, useEffect, useState } from 'react'\n\nconst VISIBILITY_STATE_SUPPORTED = 'visibilityState' in docume"
  },
  {
    "path": "src/hooks/useLast.ts",
    "chars": 1025,
    "preview": "import { useEffect, useState } from 'react'\n\n/**\n * Returns the last value of type T that passes a filter function\n * @p"
  },
  {
    "path": "src/hooks/useOnClickOutside.tsx",
    "chars": 998,
    "preview": "import { RefObject, useEffect, useRef } from 'react'\n\nexport function useOnClickOutside<T extends HTMLElement>(\n  node: "
  },
  {
    "path": "src/hooks/useParsedQueryString.ts",
    "chars": 360,
    "preview": "import { parse, ParsedQs } from 'qs'\nimport { useMemo } from 'react'\nimport { useLocation } from 'react-router-dom'\n\nexp"
  },
  {
    "path": "src/hooks/usePrevious.ts",
    "chars": 545,
    "preview": "import { useEffect, useRef } from 'react'\n\n// modified from https://usehooks.com/usePrevious/\nexport default function us"
  },
  {
    "path": "src/hooks/useTheme.ts",
    "chars": 158,
    "preview": "import { ThemeContext } from 'styled-components'\nimport { useContext } from 'react'\n\nexport default function useTheme() "
  },
  {
    "path": "src/hooks/useToggle.ts",
    "chars": 274,
    "preview": "import { useCallback, useState } from 'react'\n\nexport default function useToggle(initialState = false): [boolean, () => "
  },
  {
    "path": "src/hooks/useToggledVersion.ts",
    "chars": 394,
    "preview": "import useParsedQueryString from './useParsedQueryString'\n\nexport enum Version {\n  v1 = 'v1',\n  v2 = 'v2',\n}\n\nexport con"
  },
  {
    "path": "src/hooks/useWindowSize.ts",
    "chars": 676,
    "preview": "import { useEffect, useState } from 'react'\n\nconst isClient = typeof window === 'object'\n\nfunction getSize() {\n  return "
  },
  {
    "path": "src/i18n.ts",
    "chars": 512,
    "preview": "import i18next from 'i18next'\nimport { initReactI18next } from 'react-i18next'\nimport XHR from 'i18next-xhr-backend'\nimp"
  },
  {
    "path": "src/index.tsx",
    "chars": 1805,
    "preview": "import 'inter-ui'\nimport React, { StrictMode } from 'react'\nimport { createRoot } from 'react-dom/client'\nimport { Provi"
  },
  {
    "path": "src/pages/App.tsx",
    "chars": 6064,
    "preview": "import React, { Suspense, useState, useEffect } from 'react'\r\nimport { Route, Routes, useLocation } from 'react-router-d"
  },
  {
    "path": "src/pages/Home/index.tsx",
    "chars": 9559,
    "preview": "import React, { useState, useEffect, useMemo } from 'react'\nimport styled from 'styled-components'\nimport { AutoColumn }"
  },
  {
    "path": "src/pages/Pool/PoolPage.tsx",
    "chars": 14675,
    "preview": "import React, { useMemo, useState, useEffect } from 'react'\nimport styled from 'styled-components'\nimport { useColor } f"
  },
  {
    "path": "src/pages/Pool/PoolsOverview.tsx",
    "chars": 1490,
    "preview": "import React, { useEffect, useMemo } from 'react'\nimport { PageWrapper } from 'pages/styled'\nimport { AutoColumn } from "
  },
  {
    "path": "src/pages/Protocol/index.tsx",
    "chars": 87,
    "preview": "import React from 'react'\n\nexport default function Protocol() {\n  return <div></div>\n}\n"
  },
  {
    "path": "src/pages/Token/TokenPage.tsx",
    "chars": 15317,
    "preview": "import React, { useMemo, useState, useEffect } from 'react'\nimport {\n  useTokenData,\n  usePoolsForToken,\n  useTokenChart"
  },
  {
    "path": "src/pages/Token/TokensOverview.tsx",
    "chars": 1806,
    "preview": "import React, { useMemo, useEffect } from 'react'\nimport { PageWrapper } from 'pages/styled'\nimport { AutoColumn } from "
  },
  {
    "path": "src/pages/Token/redirects.tsx",
    "chars": 362,
    "preview": "import React from 'react'\nimport TokenPage from './TokenPage'\nimport { isAddress } from 'ethers'\nimport { Navigate, useP"
  },
  {
    "path": "src/pages/Wallets/index.tsx",
    "chars": 86,
    "preview": "import React from 'react'\n\nexport default function Wallets() {\n  return <div></div>\n}\n"
  },
  {
    "path": "src/pages/styled.ts",
    "chars": 903,
    "preview": "import styled from 'styled-components'\n\nexport const PageWrapper = styled.div`\n  width: 90%;\n`\n\nexport const ThemedBackg"
  },
  {
    "path": "src/react-app-env.d.ts",
    "chars": 1179,
    "preview": "/// <reference types=\"react-scripts\" />\n\ndeclare module 'jazzicon' {\n  export default function (diameter: number, seed: "
  },
  {
    "path": "src/state/application/actions.ts",
    "chars": 1109,
    "preview": "import { createAction } from '@reduxjs/toolkit'\nimport { TokenList } from '@uniswap/token-lists'\nimport { NetworkInfo } "
  },
  {
    "path": "src/state/application/hooks.ts",
    "chars": 5821,
    "preview": "import { ApolloClient, NormalizedCacheObject } from '@apollo/client'\nimport {\n  arbitrumBlockClient,\n  arbitrumClient,\n "
  },
  {
    "path": "src/state/application/reducer.ts",
    "chars": 2437,
    "preview": "import { createReducer, nanoid } from '@reduxjs/toolkit'\nimport { NetworkInfo } from 'constants/networks'\nimport {\n  add"
  },
  {
    "path": "src/state/application/updater.ts",
    "chars": 820,
    "preview": "import { useEffect } from 'react'\nimport { useSubgraphStatus } from './hooks'\nimport { useFetchedSubgraphStatus } from '"
  },
  {
    "path": "src/state/global/actions.ts",
    "chars": 258,
    "preview": "import { createAction } from '@reduxjs/toolkit'\n\n// fired once when the app reloads but before the app renders\n// allows"
  },
  {
    "path": "src/state/index.ts",
    "chars": 920,
    "preview": "import { configureStore, getDefaultMiddleware } from '@reduxjs/toolkit'\nimport { save, load } from 'redux-localstorage-s"
  },
  {
    "path": "src/state/lists/actions.ts",
    "chars": 1160,
    "preview": "import { ActionCreatorWithPayload, createAction } from '@reduxjs/toolkit'\nimport { TokenList, Version } from '@uniswap/t"
  },
  {
    "path": "src/state/lists/hooks.ts",
    "chars": 5246,
    "preview": "import { UNSUPPORTED_LIST_URLS } from './../../constants/lists'\nimport DEFAULT_TOKEN_LIST from '@uniswap/default-token-l"
  },
  {
    "path": "src/state/lists/reducer.test.ts",
    "chars": 15975,
    "preview": "import { DEFAULT_ACTIVE_LIST_URLS } from './../../constants/lists'\nimport { createStore, Store } from 'redux'\nimport { D"
  },
  {
    "path": "src/state/lists/reducer.ts",
    "chars": 6356,
    "preview": "import { DEFAULT_ACTIVE_LIST_URLS, UNSUPPORTED_LIST_URLS } from './../../constants/lists'\nimport { createReducer } from "
  },
  {
    "path": "src/state/lists/updater.ts",
    "chars": 3390,
    "preview": "import { getVersionUpgrade, minVersionBump, VersionUpgrade } from '@uniswap/token-lists'\nimport { OPTIMISM_LIST, UNSUPPO"
  },
  {
    "path": "src/state/lists/wrappedTokenInfo.ts",
    "chars": 2173,
    "preview": "import { Currency, Token } from '@uniswap/sdk-core'\nimport { Tags, TokenInfo, TokenList } from '@uniswap/token-lists'\n\ni"
  },
  {
    "path": "src/state/pools/actions.ts",
    "chars": 1169,
    "preview": "import { TickProcessed } from './../../data/pools/tickData'\nimport { createAction } from '@reduxjs/toolkit'\nimport { Poo"
  },
  {
    "path": "src/state/pools/hooks.ts",
    "chars": 4892,
    "preview": "import { addPoolKeys, updatePoolChartData, updatePoolTransactions, updateTickData } from 'state/pools/actions'\nimport { "
  },
  {
    "path": "src/state/pools/reducer.ts",
    "chars": 3535,
    "preview": "import { currentTimestamp } from './../../utils/index'\nimport { updatePoolData, addPoolKeys, updatePoolChartData, update"
  },
  {
    "path": "src/state/pools/updater.ts",
    "chars": 1713,
    "preview": "import { useUpdatePoolData, useAllPoolData, useAddPoolKeys } from './hooks'\nimport { useEffect, useMemo } from 'react'\ni"
  },
  {
    "path": "src/state/protocol/actions.ts",
    "chars": 642,
    "preview": "import { ProtocolData } from './reducer'\nimport { createAction } from '@reduxjs/toolkit'\nimport { ChartDayData, Transact"
  },
  {
    "path": "src/state/protocol/hooks.ts",
    "chars": 2208,
    "preview": "import { updateProtocolData, updateChartData, updateTransactions } from './actions'\nimport { AppState, AppDispatch } fro"
  },
  {
    "path": "src/state/protocol/reducer.ts",
    "chars": 2053,
    "preview": "import { currentTimestamp } from './../../utils/index'\nimport { updateProtocolData, updateChartData, updateTransactions "
  },
  {
    "path": "src/state/protocol/updater.ts",
    "chars": 1667,
    "preview": "import { useProtocolData, useProtocolChartData, useProtocolTransactions } from './hooks'\nimport { useEffect } from 'reac"
  },
  {
    "path": "src/state/tokens/actions.ts",
    "chars": 1357,
    "preview": "import { createAction } from '@reduxjs/toolkit'\nimport { TokenData, TokenChartEntry } from './reducer'\nimport { PriceCha"
  },
  {
    "path": "src/state/tokens/hooks.ts",
    "chars": 7699,
    "preview": "import { AppState, AppDispatch } from './../index'\nimport { TokenData, TokenChartEntry } from './reducer'\nimport { useCa"
  },
  {
    "path": "src/state/tokens/reducer.ts",
    "chars": 4011,
    "preview": "import { currentTimestamp } from './../../utils/index'\nimport {\n  updateTokenData,\n  addTokenKeys,\n  addPoolAddresses,\n "
  },
  {
    "path": "src/state/tokens/updater.ts",
    "chars": 1504,
    "preview": "import { useAllTokenData, useUpdateTokenData, useAddTokenKeys } from './hooks'\nimport { useEffect, useMemo } from 'react"
  },
  {
    "path": "src/state/user/actions.ts",
    "chars": 1207,
    "preview": "import { createAction } from '@reduxjs/toolkit'\n\nexport interface SerializedToken {\n  chainId: number\n  address: string\n"
  },
  {
    "path": "src/state/user/hooks.tsx",
    "chars": 2537,
    "preview": "import { Token } from '@uniswap/sdk-core'\nimport { useCallback } from 'react'\nimport { useDispatch, useSelector } from '"
  },
  {
    "path": "src/state/user/reducer.test.ts",
    "chars": 690,
    "preview": "import { createStore, Store } from 'redux'\nimport { updateVersion } from '../global/actions'\nimport reducer, { initialSt"
  },
  {
    "path": "src/state/user/reducer.ts",
    "chars": 4357,
    "preview": "import { createReducer } from '@reduxjs/toolkit'\nimport { updateVersion } from '../global/actions'\nimport {\n  addSeriali"
  },
  {
    "path": "src/state/user/updater.tsx",
    "chars": 1020,
    "preview": "import { useEffect } from 'react'\nimport { useDispatch } from 'react-redux'\nimport { AppDispatch } from '../index'\nimpor"
  },
  {
    "path": "src/theme/DarkModeQueryParamReader.tsx",
    "chars": 903,
    "preview": "import { useEffect } from 'react'\nimport { useDispatch } from 'react-redux'\nimport { useLocation } from 'react-router-do"
  },
  {
    "path": "src/theme/components.tsx",
    "chars": 6942,
    "preview": "import React, { HTMLProps, useCallback } from 'react'\nimport { Link } from 'react-router-dom'\nimport styled, { keyframes"
  },
  {
    "path": "src/theme/index.tsx",
    "chars": 6489,
    "preview": "import React, { useMemo } from 'react'\nimport styled, {\n  ThemeProvider as StyledComponentsThemeProvider,\n  createGlobal"
  },
  {
    "path": "src/theme/rebass.d.ts",
    "chars": 747,
    "preview": "import { InterpolationWithTheme } from '@emotion/core'\nimport {\n  BoxProps as BoxP,\n  ButtonProps as ButtonP,\n  FlexProp"
  },
  {
    "path": "src/theme/styled.d.ts",
    "chars": 1345,
    "preview": "import { FlattenSimpleInterpolation, ThemedCssFunction } from 'styled-components'\n\nexport type Color = string\nexport int"
  },
  {
    "path": "src/types/index.ts",
    "chars": 783,
    "preview": "export interface Block {\n  number: number\n  timestamp: string\n}\n\nexport enum VolumeWindow {\n  daily,\n  weekly,\n  monthly"
  },
  {
    "path": "src/utils/chunkArray.test.ts",
    "chars": 893,
    "preview": "import chunkArray from './chunkArray'\n\ndescribe('#chunkArray', () => {\n  it('size 1', () => {\n    expect(chunkArray([1, "
  },
  {
    "path": "src/utils/chunkArray.ts",
    "chars": 525,
    "preview": "// chunks array into chunks of maximum size\n// evenly distributes items among the chunks\nexport default function chunkAr"
  },
  {
    "path": "src/utils/contenthashToUri.test.skip.ts",
    "chars": 791,
    "preview": "import contenthashToUri, { hexToUint8Array } from './contenthashToUri'\n\n// this test is skipped for now because importin"
  },
  {
    "path": "src/utils/contenthashToUri.ts",
    "chars": 1425,
    "preview": "import CID from 'cids'\nimport { getCodec, rmPrefix } from 'multicodec'\nimport { decode, toB58String } from 'multihashes'"
  },
  {
    "path": "src/utils/currencyId.ts",
    "chars": 229,
    "preview": "import { Currency } from '@uniswap/sdk-core'\n\nexport function currencyId(currency: Currency): string {\n  if (currency.is"
  },
  {
    "path": "src/utils/data.ts",
    "chars": 1180,
    "preview": "/**\n * gets the amoutn difference plus the % change in change itself (second order change)\n * @param {*} valueNow\n * @pa"
  },
  {
    "path": "src/utils/date.ts",
    "chars": 924,
    "preview": "import dayjs from 'dayjs'\n\nexport function unixToDate(unix: number, format = 'YYYY-MM-DD'): string {\n  return dayjs.unix"
  },
  {
    "path": "src/utils/getLibrary.ts",
    "chars": 228,
    "preview": "import { Web3Provider } from '@ethersproject/providers'\n\nexport default function getLibrary(provider: any): Web3Provider"
  },
  {
    "path": "src/utils/getTokenList.ts",
    "chars": 1509,
    "preview": "import { TokenList } from '@uniswap/token-lists'\nimport schema from '@uniswap/token-lists/src/tokenlist.schema.json'\nimp"
  },
  {
    "path": "src/utils/index.ts",
    "chars": 4757,
    "preview": "import { getAddress } from '@ethersproject/address'\nimport { BigNumber } from '@ethersproject/bignumber'\nimport { Addres"
  },
  {
    "path": "src/utils/isZero.ts",
    "chars": 185,
    "preview": "/**\n * Returns true if the string value is zero in hex\n * @param hexNumberString\n */\nexport default function isZero(hexN"
  },
  {
    "path": "src/utils/listSort.ts",
    "chars": 584,
    "preview": "import { DEFAULT_LIST_OF_LISTS } from './../constants/lists'\n\n// use ordering of default list of lists to assign priorit"
  },
  {
    "path": "src/utils/listVersionLabel.ts",
    "chars": 182,
    "preview": "import { Version } from '@uniswap/token-lists'\n\nexport default function listVersionLabel(version: Version): string {\n  r"
  },
  {
    "path": "src/utils/networkPrefix.ts",
    "chars": 316,
    "preview": "import { EthereumNetworkInfo, NetworkInfo } from 'constants/networks'\n\nexport function networkPrefix(activeNewtork: Netw"
  },
  {
    "path": "src/utils/numbers.ts",
    "chars": 882,
    "preview": "import numbro from 'numbro'\n\n// using a currency library here in case we want to add more in future\nexport const formatD"
  },
  {
    "path": "src/utils/parseENSAddress.test.ts",
    "chars": 1216,
    "preview": "import { parseENSAddress } from './parseENSAddress'\n\ndescribe('parseENSAddress', () => {\n  it('test cases', () => {\n    "
  },
  {
    "path": "src/utils/parseENSAddress.ts",
    "chars": 344,
    "preview": "const ENS_NAME_REGEX = /^(([a-zA-Z0-9]+(-[a-zA-Z0-9]+)*\\.)+)eth(\\/.*)?$/\n\nexport function parseENSAddress(ensAddress: st"
  },
  {
    "path": "src/utils/queries.ts",
    "chars": 1623,
    "preview": "import { ApolloClient, NormalizedCacheObject } from '@apollo/client'\nimport dayjs from 'dayjs'\n\n/**\n * Used to get large"
  },
  {
    "path": "src/utils/resolveENSContentHash.ts",
    "chars": 1696,
    "preview": "import { Contract } from '@ethersproject/contracts'\nimport { Provider } from '@ethersproject/abstract-provider'\nimport {"
  }
]

// ... and 7 more files (download for full content)

About this extraction

This page contains the full source code of the Uniswap/v3-info GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 207 files (1.5 MB), approximately 369.3k tokens, and a symbol index with 440 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!