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 May 15, 2024
1 parent b33eb7b commit a50127e
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 8 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: `QmbUxzjP1EYtcfbHowPZBsvvtrZCbk9gXKwMQ6VJQJxKi5`
- CIDv1: `bafybeigdjfann4naayzaiqjiqqstvmn2oea75dkvwrsurvljsmxdwyzpdy`
- CIDv0: `QmSHZhazrJMNbJQjNGomH8uQAkQnFeYHeFAEkfcZMMPMp2`
- CIDv1: `bafybeib2urlxkbt5b7cijefroxj5jrrezaej7oatqy2siivquw2h7up6e4`

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://bafybeigdjfann4naayzaiqjiqqstvmn2oea75dkvwrsurvljsmxdwyzpdy.ipfs.dweb.link/
- https://bafybeigdjfann4naayzaiqjiqqstvmn2oea75dkvwrsurvljsmxdwyzpdy.ipfs.cf-ipfs.com/
- [ipfs://QmbUxzjP1EYtcfbHowPZBsvvtrZCbk9gXKwMQ6VJQJxKi5/](ipfs://QmbUxzjP1EYtcfbHowPZBsvvtrZCbk9gXKwMQ6VJQJxKi5/)
- https://bafybeib2urlxkbt5b7cijefroxj5jrrezaej7oatqy2siivquw2h7up6e4.ipfs.dweb.link/
- https://bafybeib2urlxkbt5b7cijefroxj5jrrezaej7oatqy2siivquw2h7up6e4.ipfs.cf-ipfs.com/
- [ipfs://QmSHZhazrJMNbJQjNGomH8uQAkQnFeYHeFAEkfcZMMPMp2/](ipfs://QmSHZhazrJMNbJQjNGomH8uQAkQnFeYHeFAEkfcZMMPMp2/)

### 5.27.3 (2024-05-14)
### 5.27.4 (2024-05-15)


### Bug Fixes

* **web:** [prod] check client chain for undefined (#8216) 50cf939


2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
web/5.27.3
web/5.27.4
2 changes: 1 addition & 1 deletion apps/web/src/hooks/useEthersSigner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import type { Account, Chain, Client, Transport } from 'viem'
import { Config, useConnectorClient } from 'wagmi'

function clientToSigner(client?: Client<Transport, Chain, Account>) {
if (!client) return undefined
if (!client || !client.chain) return undefined
const { chain, transport, account } = client
const network = {
chainId: chain.id,
Expand Down

0 comments on commit a50127e

Please sign in to comment.