File tree Expand file tree Collapse file tree 4 files changed +13
-13
lines changed
components/Pools/PoolDetails Expand file tree Collapse file tree 4 files changed +13
-13
lines changed Original file line number Diff line number Diff line change 11IPFS hash of the deployment:
2- - CIDv0: `QmVSCwN4FJ1Dz9ektaM2hE2SgFwxneE8qNDTsTiFQ9sWav `
3- - CIDv1: `bafybeidjnytuwuppye6qvlapvslldvomy3l6tfb54lqy7weebvcacwkgom `
2+ - CIDv0: `QmSXtnd5rc5ifhuGDZ9oSTWzT3hby6KQJ8Lw3hbVzpvfD5 `
3+ - CIDv1: `bafybeib6kag7hqjgchx7kr7novcjc42sn6bc5iq2u27ra5n2wimtjiwg5q `
44
55The 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.
1010Your Uniswap settings are never remembered across different URLs.
1111
1212IPFS 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
Original file line number Diff line number Diff line change 1- web/5.69.2
1+ web/5.69.3
Original file line number Diff line number Diff line change @@ -54,9 +54,9 @@ const PoolTransactionColumnWidth: { [key in PoolTransactionColumn]: number } = {
5454function 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
6262export function PoolDetailsTransactionsTable ( {
Original file line number Diff line number Diff 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 } ,
You can’t perform that action at this time.
0 commit comments