Skip to content

Commit e64228a

Browse files
ci(release): publish latest release
1 parent 9c553a6 commit e64228a

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

RELEASE

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
IPFS hash of the deployment:
2-
- CIDv0: `QmVSCwN4FJ1Dz9ektaM2hE2SgFwxneE8qNDTsTiFQ9sWav`
3-
- CIDv1: `bafybeidjnytuwuppye6qvlapvslldvomy3l6tfb54lqy7weebvcacwkgom`
2+
- CIDv0: `QmSXtnd5rc5ifhuGDZ9oSTWzT3hby6KQJ8Lw3hbVzpvfD5`
3+
- CIDv1: `bafybeib6kag7hqjgchx7kr7novcjc42sn6bc5iq2u27ra5n2wimtjiwg5q`
44

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

@@ -10,14 +10,14 @@ 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://bafybeidjnytuwuppye6qvlapvslldvomy3l6tfb54lqy7weebvcacwkgom.ipfs.dweb.link/
14-
- [ipfs://QmVSCwN4FJ1Dz9ektaM2hE2SgFwxneE8qNDTsTiFQ9sWav/](ipfs://QmVSCwN4FJ1Dz9ektaM2hE2SgFwxneE8qNDTsTiFQ9sWav/)
13+
- https://bafybeib6kag7hqjgchx7kr7novcjc42sn6bc5iq2u27ra5n2wimtjiwg5q.ipfs.dweb.link/
14+
- [ipfs://QmSXtnd5rc5ifhuGDZ9oSTWzT3hby6KQJ8Lw3hbVzpvfD5/](ipfs://QmSXtnd5rc5ifhuGDZ9oSTWzT3hby6KQJ8Lw3hbVzpvfD5/)
1515

16-
### 5.69.2 (2025-02-07)
16+
### 5.69.3 (2025-02-07)
1717

1818

1919
### Bug Fixes
2020

21-
* **web:** block unichain leaks via url pathways (#16070) ab61225
21+
* **web:** show correct token amount in PDP tx table [prod] (#16114) 5391b42
2222

2323

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
web/5.69.2
1+
web/5.69.3

apps/web/src/components/Pools/PoolDetails/PoolDetailsTransactionsTable.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,9 @@ const PoolTransactionColumnWidth: { [key in PoolTransactionColumn]: number } = {
5454
function comparePoolTokens(tokenA: PoolTableTransaction['pool']['token0'], tokenB?: Token) {
5555
if (tokenB?.address === NATIVE_CHAIN_ID) {
5656
const chainId = supportedChainIdFromGQLChain(tokenB.chain)
57-
return chainId && tokenA.id.toLowerCase() === WRAPPED_NATIVE_CURRENCY[chainId]?.address.toLowerCase()
57+
return chainId && tokenA.id?.toLowerCase() === WRAPPED_NATIVE_CURRENCY[chainId]?.address.toLowerCase()
5858
}
59-
return tokenA.id.toLowerCase() === tokenB?.address?.toLowerCase()
59+
return tokenA.id?.toLowerCase() === tokenB?.address?.toLowerCase()
6060
}
6161

6262
export function PoolDetailsTransactionsTable({

apps/web/src/graphql/data/pools/usePoolTransactions.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@ export interface PoolTableTransaction {
3030
transaction: string
3131
pool: {
3232
token0: {
33-
id: string
33+
id: string | null
3434
symbol: string
3535
}
3636
token1: {
37-
id: string
37+
id: string | null
3838
symbol: string
3939
}
4040
}
@@ -189,11 +189,11 @@ export function usePoolTransactions(
189189
transaction: tx.hash,
190190
pool: {
191191
token0: {
192-
id: tx.token0.address ?? '',
192+
id: tx.token0.address ?? null,
193193
symbol: tx.token0.symbol ?? '',
194194
},
195195
token1: {
196-
id: tx.token1.address ?? '',
196+
id: tx.token1.address ?? null,
197197
symbol: tx.token1.symbol ?? '',
198198
},
199199
},

0 commit comments

Comments
 (0)