ci(release): publish latest release

parent 920454a2
IPFS hash of the deployment: IPFS hash of the deployment:
- CIDv0: `QmPJRmYQHgjfL1W5skf8cUmsFMFGBxVmDS8svqWBT81Lew` - CIDv0: `QmQHmbvMgf6snJLsy86wQW21owJimqnkJJCYYGbBpcCoig`
- CIDv1: `bafybeiaojhskjkwp2cbsehkj7fm4cfv6pjsapflwz5eebreopupzbuna6q` - CIDv1: `bafybeia47jwp444qim2245sns24s5dnmr4wzkd3tvyeykxiimn7i6aedwe`
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://bafybeiaojhskjkwp2cbsehkj7fm4cfv6pjsapflwz5eebreopupzbuna6q.ipfs.dweb.link/ - https://bafybeia47jwp444qim2245sns24s5dnmr4wzkd3tvyeykxiimn7i6aedwe.ipfs.dweb.link/
- https://bafybeiaojhskjkwp2cbsehkj7fm4cfv6pjsapflwz5eebreopupzbuna6q.ipfs.cf-ipfs.com/ - https://bafybeia47jwp444qim2245sns24s5dnmr4wzkd3tvyeykxiimn7i6aedwe.ipfs.cf-ipfs.com/
- [ipfs://QmPJRmYQHgjfL1W5skf8cUmsFMFGBxVmDS8svqWBT81Lew/](ipfs://QmPJRmYQHgjfL1W5skf8cUmsFMFGBxVmDS8svqWBT81Lew/) - [ipfs://QmQHmbvMgf6snJLsy86wQW21owJimqnkJJCYYGbBpcCoig/](ipfs://QmQHmbvMgf6snJLsy86wQW21owJimqnkJJCYYGbBpcCoig/)
### 5.46.1 (2024-09-12) ### 5.46.2 (2024-09-17)
### Bug Fixes ### Bug Fixes
* **web:** remove frontend global search sorting/filtering logic [prod hotfix] (#11829) a5fcd4e * **web:** prevent crash from new Base fee tiers [prod hotfix] (#11933) e570b30
web/5.46.1 web/5.46.2
\ No newline at end of file \ No newline at end of file
...@@ -113,6 +113,9 @@ function usePoolTVL(token0: Token | undefined, token1: Token | undefined) { ...@@ -113,6 +113,9 @@ function usePoolTVL(token0: Token | undefined, token1: Token | undefined) {
if (!value.feeTier) { if (!value.feeTier) {
return acc return acc
} }
acc[value.feeTier] ??= [0, 0]
acc[value.feeTier][0] = (acc[value.feeTier][0] ?? 0) + Number(value.token0Supply) acc[value.feeTier][0] = (acc[value.feeTier][0] ?? 0) + Number(value.token0Supply)
acc[value.feeTier][1] = (acc[value.feeTier][1] ?? 0) + Number(value.token1Supply) acc[value.feeTier][1] = (acc[value.feeTier][1] ?? 0) + Number(value.token1Supply)
return acc return acc
...@@ -122,7 +125,7 @@ function usePoolTVL(token0: Token | undefined, token1: Token | undefined) { ...@@ -122,7 +125,7 @@ function usePoolTVL(token0: Token | undefined, token1: Token | undefined) {
[FeeAmount.LOW]: [undefined, undefined], [FeeAmount.LOW]: [undefined, undefined],
[FeeAmount.MEDIUM]: [undefined, undefined], [FeeAmount.MEDIUM]: [undefined, undefined],
[FeeAmount.HIGH]: [undefined, undefined], [FeeAmount.HIGH]: [undefined, undefined],
} as Record<FeeAmount, [number | undefined, number | undefined]>, },
) )
// sum total tvl for token0 and token1 // sum total tvl for token0 and token1
......
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