Skip to content

Commit a50127e

Browse files
ci(release): publish latest release
1 parent b33eb7b commit a50127e

File tree

3 files changed

+13
-8
lines changed

3 files changed

+13
-8
lines changed

RELEASE

+11-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
IPFS hash of the deployment:
2-
- CIDv0: `QmbUxzjP1EYtcfbHowPZBsvvtrZCbk9gXKwMQ6VJQJxKi5`
3-
- CIDv1: `bafybeigdjfann4naayzaiqjiqqstvmn2oea75dkvwrsurvljsmxdwyzpdy`
2+
- CIDv0: `QmSHZhazrJMNbJQjNGomH8uQAkQnFeYHeFAEkfcZMMPMp2`
3+
- CIDv1: `bafybeib2urlxkbt5b7cijefroxj5jrrezaej7oatqy2siivquw2h7up6e4`
44

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

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

1212
IPFS gateways:
13-
- https://bafybeigdjfann4naayzaiqjiqqstvmn2oea75dkvwrsurvljsmxdwyzpdy.ipfs.dweb.link/
14-
- https://bafybeigdjfann4naayzaiqjiqqstvmn2oea75dkvwrsurvljsmxdwyzpdy.ipfs.cf-ipfs.com/
15-
- [ipfs://QmbUxzjP1EYtcfbHowPZBsvvtrZCbk9gXKwMQ6VJQJxKi5/](ipfs://QmbUxzjP1EYtcfbHowPZBsvvtrZCbk9gXKwMQ6VJQJxKi5/)
13+
- https://bafybeib2urlxkbt5b7cijefroxj5jrrezaej7oatqy2siivquw2h7up6e4.ipfs.dweb.link/
14+
- https://bafybeib2urlxkbt5b7cijefroxj5jrrezaej7oatqy2siivquw2h7up6e4.ipfs.cf-ipfs.com/
15+
- [ipfs://QmSHZhazrJMNbJQjNGomH8uQAkQnFeYHeFAEkfcZMMPMp2/](ipfs://QmSHZhazrJMNbJQjNGomH8uQAkQnFeYHeFAEkfcZMMPMp2/)
1616

17-
### 5.27.3 (2024-05-14)
17+
### 5.27.4 (2024-05-15)
18+
19+
20+
### Bug Fixes
21+
22+
* **web:** [prod] check client chain for undefined (#8216) 50cf939
1823

1924

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
web/5.27.3
1+
web/5.27.4

apps/web/src/hooks/useEthersSigner.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import type { Account, Chain, Client, Transport } from 'viem'
44
import { Config, useConnectorClient } from 'wagmi'
55

66
function clientToSigner(client?: Client<Transport, Chain, Account>) {
7-
if (!client) return undefined
7+
if (!client || !client.chain) return undefined
88
const { chain, transport, account } = client
99
const network = {
1010
chainId: chain.id,

0 commit comments

Comments
 (0)