ci(release): publish latest release

parent ae6012da
IPFS hash of the deployment: IPFS hash of the deployment:
- CIDv0: `QmRUQggwPRvjCrAusfxoEh4X2CNdUX8UTNvJD386JDbwZG` - CIDv0: `QmchdAPH9uqVLCC1ioK17YJLEvjrGv5K4JLjkL7vowb1em`
- CIDv1: `bafybeibor7myvk5yzfdx7k3orreuxitxtseyd2zh5zaaqczjo5i4gmyrk4` - CIDv1: `bafybeigvmmijtkdmusl7u22jm76purvb4vyrqihztbb5c7h4ragsc2irhy`
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://bafybeibor7myvk5yzfdx7k3orreuxitxtseyd2zh5zaaqczjo5i4gmyrk4.ipfs.dweb.link/ - https://bafybeigvmmijtkdmusl7u22jm76purvb4vyrqihztbb5c7h4ragsc2irhy.ipfs.dweb.link/
- https://bafybeibor7myvk5yzfdx7k3orreuxitxtseyd2zh5zaaqczjo5i4gmyrk4.ipfs.cf-ipfs.com/ - https://bafybeigvmmijtkdmusl7u22jm76purvb4vyrqihztbb5c7h4ragsc2irhy.ipfs.cf-ipfs.com/
- [ipfs://QmRUQggwPRvjCrAusfxoEh4X2CNdUX8UTNvJD386JDbwZG/](ipfs://QmRUQggwPRvjCrAusfxoEh4X2CNdUX8UTNvJD386JDbwZG/) - [ipfs://QmchdAPH9uqVLCC1ioK17YJLEvjrGv5K4JLjkL7vowb1em/](ipfs://QmchdAPH9uqVLCC1ioK17YJLEvjrGv5K4JLjkL7vowb1em/)
### 5.23.2 (2024-04-11) ### 5.23.3 (2024-04-11)
### Bug Fixes ### Bug Fixes
* **web:** TokenBalanceProvider account change [prod] (#7433) ae7d54b * **web:** set usePoolData errorPolicy to all a94ce7a
web/5.23.2 web/5.23.3
\ No newline at end of file \ No newline at end of file
...@@ -80,6 +80,7 @@ export function usePoolData( ...@@ -80,6 +80,7 @@ export function usePoolData(
data: dataV3, data: dataV3,
} = useV3PoolQuery({ } = useV3PoolQuery({
variables: { chain: chainIdToBackendName(chainId), address: poolAddress }, variables: { chain: chainIdToBackendName(chainId), address: poolAddress },
errorPolicy: 'all',
}) })
const { const {
loading: loadingV2, loading: loadingV2,
...@@ -88,6 +89,7 @@ export function usePoolData( ...@@ -88,6 +89,7 @@ export function usePoolData(
} = useV2PairQuery({ } = useV2PairQuery({
variables: { address: poolAddress }, variables: { address: poolAddress },
skip: chainId !== ChainId.MAINNET, skip: chainId !== ChainId.MAINNET,
errorPolicy: 'all',
}) })
return useMemo(() => { return useMemo(() => {
......
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