ci(release): publish latest release

parent 7e356d46
IPFS hash of the deployment: IPFS hash of the deployment:
- CIDv0: `QmdCnKVAywu4azEfXZmabRLDxgdxhLxuBNmY6jYnnBF2pG` - CIDv0: `QmcrC7r7rTib44JSKEidtHVYcwVXxHzs4Zfz7j39BJTbU8`
- CIDv1: `bafybeig43nbroxcyglscukpu6gith45bvza4lqriipvzavuiija3ufhmre` - CIDv1: `bafybeigxst4z4x3v4pzihhykcxjn3a7ch4pijhxjlp75cmwym5zs53peju`
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,14 +10,14 @@ You can also access the Uniswap Interface from an IPFS gateway. ...@@ -10,14 +10,14 @@ 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://bafybeig43nbroxcyglscukpu6gith45bvza4lqriipvzavuiija3ufhmre.ipfs.dweb.link/ - https://bafybeigxst4z4x3v4pzihhykcxjn3a7ch4pijhxjlp75cmwym5zs53peju.ipfs.dweb.link/
- [ipfs://QmdCnKVAywu4azEfXZmabRLDxgdxhLxuBNmY6jYnnBF2pG/](ipfs://QmdCnKVAywu4azEfXZmabRLDxgdxhLxuBNmY6jYnnBF2pG/) - [ipfs://QmcrC7r7rTib44JSKEidtHVYcwVXxHzs4Zfz7j39BJTbU8/](ipfs://QmcrC7r7rTib44JSKEidtHVYcwVXxHzs4Zfz7j39BJTbU8/)
### 5.70.2 (2025-02-10) ### 5.70.3 (2025-02-10)
### Bug Fixes ### Bug Fixes
* **web:** network logo fix prod (#16146) 5f636c5 * **web:** crash on the v2 migrate page (#16157) ea806be
web/5.70.2 web/5.70.3
\ No newline at end of file \ No newline at end of file
...@@ -194,7 +194,7 @@ export function useTrackedTokenPairs(): [Token, Token][] { ...@@ -194,7 +194,7 @@ export function useTrackedTokenPairs(): [Token, Token][] {
() => () =>
chainId && popularTokens?.topTokens chainId && popularTokens?.topTokens
? popularTokens.topTokens.flatMap((gqlToken) => { ? popularTokens.topTokens.flatMap((gqlToken) => {
if (!gqlToken) { if (!gqlToken || !gqlToken.address) {
return [] return []
} }
const token = gqlToCurrency(gqlToken) const token = gqlToCurrency(gqlToken)
......
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