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 Feb 7, 2025
1 parent 9c553a6 commit e64228a
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
12 changes: 6 additions & 6 deletions RELEASE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
IPFS hash of the deployment:
- CIDv0: `QmVSCwN4FJ1Dz9ektaM2hE2SgFwxneE8qNDTsTiFQ9sWav`
- CIDv1: `bafybeidjnytuwuppye6qvlapvslldvomy3l6tfb54lqy7weebvcacwkgom`
- CIDv0: `QmSXtnd5rc5ifhuGDZ9oSTWzT3hby6KQJ8Lw3hbVzpvfD5`
- CIDv1: `bafybeib6kag7hqjgchx7kr7novcjc42sn6bc5iq2u27ra5n2wimtjiwg5q`

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

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

IPFS gateways:
- https://bafybeidjnytuwuppye6qvlapvslldvomy3l6tfb54lqy7weebvcacwkgom.ipfs.dweb.link/
- [ipfs://QmVSCwN4FJ1Dz9ektaM2hE2SgFwxneE8qNDTsTiFQ9sWav/](ipfs://QmVSCwN4FJ1Dz9ektaM2hE2SgFwxneE8qNDTsTiFQ9sWav/)
- https://bafybeib6kag7hqjgchx7kr7novcjc42sn6bc5iq2u27ra5n2wimtjiwg5q.ipfs.dweb.link/
- [ipfs://QmSXtnd5rc5ifhuGDZ9oSTWzT3hby6KQJ8Lw3hbVzpvfD5/](ipfs://QmSXtnd5rc5ifhuGDZ9oSTWzT3hby6KQJ8Lw3hbVzpvfD5/)

### 5.69.2 (2025-02-07)
### 5.69.3 (2025-02-07)


### Bug Fixes

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


2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
web/5.69.2
web/5.69.3
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@ const PoolTransactionColumnWidth: { [key in PoolTransactionColumn]: number } = {
function comparePoolTokens(tokenA: PoolTableTransaction['pool']['token0'], tokenB?: Token) {
if (tokenB?.address === NATIVE_CHAIN_ID) {
const chainId = supportedChainIdFromGQLChain(tokenB.chain)
return chainId && tokenA.id.toLowerCase() === WRAPPED_NATIVE_CURRENCY[chainId]?.address.toLowerCase()
return chainId && tokenA.id?.toLowerCase() === WRAPPED_NATIVE_CURRENCY[chainId]?.address.toLowerCase()
}
return tokenA.id.toLowerCase() === tokenB?.address?.toLowerCase()
return tokenA.id?.toLowerCase() === tokenB?.address?.toLowerCase()
}

export function PoolDetailsTransactionsTable({
Expand Down
8 changes: 4 additions & 4 deletions apps/web/src/graphql/data/pools/usePoolTransactions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@ export interface PoolTableTransaction {
transaction: string
pool: {
token0: {
id: string
id: string | null
symbol: string
}
token1: {
id: string
id: string | null
symbol: string
}
}
Expand Down Expand Up @@ -189,11 +189,11 @@ export function usePoolTransactions(
transaction: tx.hash,
pool: {
token0: {
id: tx.token0.address ?? '',
id: tx.token0.address ?? null,
symbol: tx.token0.symbol ?? '',
},
token1: {
id: tx.token1.address ?? '',
id: tx.token1.address ?? null,
symbol: tx.token1.symbol ?? '',
},
},
Expand Down

0 comments on commit e64228a

Please sign in to comment.