ci(release): publish latest release

parent bf8a5be4
IPFS hash of the deployment: IPFS hash of the deployment:
- CIDv0: `QmQHEMPoqZQfpohtZc8Hr7pbyDqNemG73Hk1nPXBkGUBPH` - CIDv0: `QmWSe3hTmjqzZqabn4gHezjj72nWg96k2mnzoq1LkndfWA`
- CIDv1: `bafybeia424ltwwetxbd2mydhblgldh6dg5iporjoopqisd45ng47hfwj7q` - CIDv1: `bafybeidymy5uhlni5456cwgyyj5wlst44gdh5343cfkivvvdysiwok5uam`
The latest release is always mirrored at [app.uniswap.org](https://app.uniswap.org). The latest release is always mirrored at [app.uniswap.org](https://app.uniswap.org).
...@@ -10,15 +10,15 @@ You can also access the Uniswap Interface from an IPFS gateway. ...@@ -10,15 +10,15 @@ You can also access the Uniswap Interface from an IPFS gateway.
Your Uniswap settings are never remembered across different URLs. Your Uniswap settings are never remembered across different URLs.
IPFS gateways: IPFS gateways:
- https://bafybeia424ltwwetxbd2mydhblgldh6dg5iporjoopqisd45ng47hfwj7q.ipfs.dweb.link/ - https://bafybeidymy5uhlni5456cwgyyj5wlst44gdh5343cfkivvvdysiwok5uam.ipfs.dweb.link/
- https://bafybeia424ltwwetxbd2mydhblgldh6dg5iporjoopqisd45ng47hfwj7q.ipfs.cf-ipfs.com/ - https://bafybeidymy5uhlni5456cwgyyj5wlst44gdh5343cfkivvvdysiwok5uam.ipfs.cf-ipfs.com/
- [ipfs://QmQHEMPoqZQfpohtZc8Hr7pbyDqNemG73Hk1nPXBkGUBPH/](ipfs://QmQHEMPoqZQfpohtZc8Hr7pbyDqNemG73Hk1nPXBkGUBPH/) - [ipfs://QmWSe3hTmjqzZqabn4gHezjj72nWg96k2mnzoq1LkndfWA/](ipfs://QmWSe3hTmjqzZqabn4gHezjj72nWg96k2mnzoq1LkndfWA/)
### 5.14.1 (2024-02-27) ### 5.14.2 (2024-02-27)
### Bug Fixes ### Bug Fixes
* **web:** analytics fix for limits [hotfix for prod] (#6602) f1133af * **web:** [info] remove markets from pool token (#6613) (#6617) add0389
web/5.14.1 web/5.14.2
\ No newline at end of file \ No newline at end of file
...@@ -7,13 +7,6 @@ fragment PoolToken on Token { ...@@ -7,13 +7,6 @@ fragment PoolToken on Token {
decimals decimals
project { project {
id id
markets(currencies: [USD]) {
id
price {
id
value
}
}
logo { logo {
id id
url url
...@@ -29,10 +22,38 @@ query V3Pool($chain: Chain!, $address: String!) { ...@@ -29,10 +22,38 @@ query V3Pool($chain: Chain!, $address: String!) {
feeTier feeTier
token0 { token0 {
...PoolToken ...PoolToken
project {
id
markets(currencies: [USD]) {
id
price {
id
value
}
}
logo {
id
url
}
}
} }
token0Supply token0Supply
token1 { token1 {
...PoolToken ...PoolToken
project {
id
markets(currencies: [USD]) {
id
price {
id
value
}
}
logo {
id
url
}
}
} }
token1Supply token1Supply
txCount txCount
...@@ -99,10 +120,38 @@ query V2Pair($address: String!) { ...@@ -99,10 +120,38 @@ query V2Pair($address: String!) {
address address
token0 { token0 {
...PoolToken ...PoolToken
project {
id
markets(currencies: [USD]) {
id
price {
id
value
}
}
logo {
id
url
}
}
} }
token0Supply token0Supply
token1 { token1 {
...PoolToken ...PoolToken
project {
id
markets(currencies: [USD]) {
id
price {
id
value
}
}
logo {
id
url
}
}
} }
token1Supply token1Supply
txCount txCount
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment