Skip to content

Commit 577d92a

Browse files
committed
Update README
1 parent 50883f6 commit 577d92a

File tree

7 files changed

+62
-292
lines changed

7 files changed

+62
-292
lines changed

.yarn/install-state.gz

-17.7 KB
Binary file not shown.

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,9 @@ An open sourced interface for Uniswap V3 Analytics.
44

55
Info URL: https://uniswap-v3-info.metacrypt.org
66

7-
> Quick Note: Uniswap decided to deprecate their own Uniswap V3 Info website on June 11th with less than 1 week of notice, so I decided to deploy the exact same website with the same codebase for the community to use.
7+
## Why?
8+
9+
- Uniswap decided to deprecate their own Uniswap V3 Info website on June 11th, 2024 with less than 1 week of notice. [See Commit](https://github.com/Uniswap/v3-info/commit/43e5b31f1a8a2e47137dd7d08398be7043ccaf98).
10+
- This Analytics interface is still extremely useful for Liquidity Providers on Uniswap V3, their new combined interface lacks specific information.
11+
- Maintaining and Open Sourcing this codebase will allow the community to continue using this interface.
12+
- Deployed with GitHub Pages to ensure it is always available and securely deployed.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@uniswap/interface",
33
"description": "Uniswap Interface",
4-
"homepage": ".",
4+
"homepage": "https://uniswap-v3-info.metacrypt.org/",
55
"private": true,
66
"devDependencies": {
77
"@emotion/core": "^11.0.0",

public/451.html

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
<!DOCTYPE html>
22
<html lang="en">
3-
<head>
4-
<meta charset="utf-8" />
5-
<title>Unavailable For Legal Reasons</title>
6-
</head>
7-
<body>
8-
<h1>Unavailable For Legal Reasons</h1>
9-
</body>
10-
</html>
3+
4+
<head>
5+
<meta charset="utf-8" />
6+
<title>Unavailable For Legal Reasons</title>
7+
</head>
8+
9+
<body>
10+
<h1>Unavailable For Legal Reasons</h1>
11+
</body>
12+
13+
</html>

public/index.html

Lines changed: 22 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
<!DOCTYPE html>
22
<html lang="en">
3-
<head>
4-
<meta charset="utf-8" />
5-
<link rel="shortcut icon" type="image/png" href="%PUBLIC_URL%/favicon.png" />
6-
<link rel="apple-touch-icon" sizes="192x192" href="%PUBLIC_URL%/images/192x192_App_Icon.png" />
7-
<link rel="apple-touch-icon" sizes="512x512" href="%PUBLIC_URL%/images/512x512_App_Icon.png" />
8-
9-
<meta name="viewport" content="width=device-width, initial-scale=1" />
10-
<meta name="theme-color" content="#ff007a" />
11-
<meta name="fortmatic-site-verification" content="j93LgcVZk79qcgyo" />
12-
<!--
3+
4+
<head>
5+
<meta charset="utf-8" />
6+
<link rel="shortcut icon" type="image/png" href="%PUBLIC_URL%/favicon.png" />
7+
<link rel="apple-touch-icon" sizes="192x192" href="%PUBLIC_URL%/images/192x192_App_Icon.png" />
8+
<link rel="apple-touch-icon" sizes="512x512" href="%PUBLIC_URL%/images/512x512_App_Icon.png" />
9+
10+
<meta name="viewport" content="width=device-width, initial-scale=1" />
11+
<meta name="theme-color" content="#ff007a" />
12+
<!--
1313
manifest.json provides metadata used when your web app is installed on a
1414
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
1515
-->
16-
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
17-
<!--
16+
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
17+
<!--
1818
Notice the use of %PUBLIC_URL% in the tags above.
1919
It will be replaced with the URL of the `public` folder during the build.
2020
Only files inside the `public` folder can be referenced from the HTML.
@@ -24,12 +24,13 @@
2424
Learn how to configure a non-root public URL by running `npm run build`.
2525
-->
2626

27-
<title>Uniswap Info</title>
28-
</head>
29-
<body>
30-
<noscript>You need to enable JavaScript to run this app.</noscript>
31-
<div id="root"></div>
32-
<!--
27+
<title>Uniswap Info</title>
28+
</head>
29+
30+
<body>
31+
<noscript>You need to enable JavaScript to run this app.</noscript>
32+
<div id="root"></div>
33+
<!--
3334
This HTML file is a template.
3435
If you open it directly in the browser, you will see an empty page.
3536
@@ -39,5 +40,6 @@
3940
To begin the development, run `npm start` or `yarn start`.
4041
To create a production bundle, use `npm run build` or `yarn build`.
4142
-->
42-
</body>
43-
</html>
43+
</body>
44+
45+
</html>

src/components/Header/TopBar.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ const TopBar = () => {
4747
</RowFixed>
4848
</AutoRow>
4949
<AutoRow $gap="6px" style={{ justifyContent: 'flex-end' }}>
50-
<StyledLink href="https://v2.info.uniswap.org/#/">V2 Analytics</StyledLink>
5150
<StyledLink href="https://docs.uniswap.org/">Docs</StyledLink>
5251
<StyledLink href="https://app.uniswap.org/#/swap">App</StyledLink>
5352
</AutoRow>

0 commit comments

Comments
 (0)