Skip to content

Commit

Permalink
ci(release): publish latest release
Browse files Browse the repository at this point in the history
  • Loading branch information
hello-happy-puppy committed Oct 10, 2024
1 parent 51545ba commit 3f89350
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 9 deletions.
17 changes: 11 additions & 6 deletions RELEASE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
IPFS hash of the deployment:
- CIDv0: `QmZ2woTrzL5shcw9Ek6jqsLnHAMh1KGWGPkbeoMw3toRfC`
- CIDv1: `bafybeie645wzgpsz5isxptb3bdyo67rhtc4dfxjekenod6jvf6jxi7yqe4`
- CIDv0: `QmX5dHDvYJwU2rZoLSCyZLiE8E3iSDEeyMRvbZxCAN6PJ9`
- CIDv1: `bafybeieb37nluv6rhyctnziiqxybgimkhxcaz7dpm3efb4xgqes6tftk6i`

The latest release is always mirrored at [app.uniswap.org](https://app.uniswap.org).

Expand All @@ -10,10 +10,15 @@ You can also access the Uniswap Interface from an IPFS gateway.
Your Uniswap settings are never remembered across different URLs.

IPFS gateways:
- https://bafybeie645wzgpsz5isxptb3bdyo67rhtc4dfxjekenod6jvf6jxi7yqe4.ipfs.dweb.link/
- https://bafybeie645wzgpsz5isxptb3bdyo67rhtc4dfxjekenod6jvf6jxi7yqe4.ipfs.cf-ipfs.com/
- [ipfs://QmZ2woTrzL5shcw9Ek6jqsLnHAMh1KGWGPkbeoMw3toRfC/](ipfs://QmZ2woTrzL5shcw9Ek6jqsLnHAMh1KGWGPkbeoMw3toRfC/)
- https://bafybeieb37nluv6rhyctnziiqxybgimkhxcaz7dpm3efb4xgqes6tftk6i.ipfs.dweb.link/
- https://bafybeieb37nluv6rhyctnziiqxybgimkhxcaz7dpm3efb4xgqes6tftk6i.ipfs.cf-ipfs.com/
- [ipfs://QmX5dHDvYJwU2rZoLSCyZLiE8E3iSDEeyMRvbZxCAN6PJ9/](ipfs://QmX5dHDvYJwU2rZoLSCyZLiE8E3iSDEeyMRvbZxCAN6PJ9/)

### 5.51.2 (2024-10-10)
### 5.51.3 (2024-10-10)


### Bug Fixes

* **web:** fix network filter on explore (#12894) b29b04a


2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
web/5.51.2
web/5.51.3
4 changes: 2 additions & 2 deletions apps/web/src/components/Tokens/TokenTable/NetworkFilter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -86,15 +86,15 @@ export default function TableNetworkFilter() {
const chainId = supportedChainIdFromGQLChain(network)
const isSupportedChain = isSupportedChainCallback(chainId)
const chainInfo = isSupportedChain ? UNIVERSE_CHAIN_INFO[chainId] : undefined
return (
return chainInfo ? (
<TableNetworkItem
key={network}
display={network}
chainInfo={chainInfo}
toggleMenu={toggleMenu}
tab={tab}
/>
)
) : null
})}
{BACKEND_NOT_YET_SUPPORTED_CHAIN_IDS.map((network) => {
const isSupportedChain = isSupportedChainCallback(network)
Expand Down

0 comments on commit 3f89350

Please sign in to comment.