ci(release): publish latest release

parent eac088b8
IPFS hash of the deployment: IPFS hash of the deployment:
- CIDv0: `QmWZERyNmMf7JhDQJ8mXYLPdchuQjWNdc5Z3sKN6C9bsL9` - CIDv0: `QmTFgNJaQqAaTCCyb3Zvz9jyLpQfB9Xh25WcvebZz6G1Pd`
- CIDv1: `bafybeid2c2mdeiiysuldtcrlma2oaydsigt4ev55cttcb53zk6ldw7cozy` - CIDv1: `bafybeicjart6xnqnhn2wxxtaygvl327ad3dtufggocex2pczejucjiwhna`
The latest release is always mirrored at [app.uniswap.org](https://app.uniswap.org). The latest release is always mirrored at [app.uniswap.org](https://app.uniswap.org).
...@@ -10,38 +10,15 @@ You can also access the Uniswap Interface from an IPFS gateway. ...@@ -10,38 +10,15 @@ You can also access the Uniswap Interface from an IPFS gateway.
Your Uniswap settings are never remembered across different URLs. Your Uniswap settings are never remembered across different URLs.
IPFS gateways: IPFS gateways:
- https://bafybeid2c2mdeiiysuldtcrlma2oaydsigt4ev55cttcb53zk6ldw7cozy.ipfs.dweb.link/ - https://bafybeicjart6xnqnhn2wxxtaygvl327ad3dtufggocex2pczejucjiwhna.ipfs.dweb.link/
- https://bafybeid2c2mdeiiysuldtcrlma2oaydsigt4ev55cttcb53zk6ldw7cozy.ipfs.cf-ipfs.com/ - https://bafybeicjart6xnqnhn2wxxtaygvl327ad3dtufggocex2pczejucjiwhna.ipfs.cf-ipfs.com/
- [ipfs://QmWZERyNmMf7JhDQJ8mXYLPdchuQjWNdc5Z3sKN6C9bsL9/](ipfs://QmWZERyNmMf7JhDQJ8mXYLPdchuQjWNdc5Z3sKN6C9bsL9/) - [ipfs://QmTFgNJaQqAaTCCyb3Zvz9jyLpQfB9Xh25WcvebZz6G1Pd/](ipfs://QmTFgNJaQqAaTCCyb3Zvz9jyLpQfB9Xh25WcvebZz6G1Pd/)
## 5.17.0 (2024-03-06) ### 5.17.1 (2024-03-07)
### Features
* **web:** [info] Shorthand for timestamps (#6675) 6b63c99
* **web:** [info] truncate long token names in Tables (#6682) 402ba22
* **web:** [info] Use sentence case for Swap in All Tx Table (#6687) f59d68d
* **web:** add disclaimer to limits in more places (#6609) 0467d43
* **web:** add more limits disclaimers 4345063
* **web:** add more limits disclaimers (#6738) 5dc1070
* **web:** adding USDC to Celo (#6641) a34ea26
* **web:** Rename Ether -> Ethereum (#6661) 1f2efb3
### Bug Fixes ### Bug Fixes
* **web:** [info] Fixes blocking Testlio feedback (#6724) 2bbc8f8 * **web:** [info] Update PDP TX Table on token order switch (#6772) (#6775) 685bb6d
* **web:** [limits] presets breaking (#6634) 0036a7a
* **web:** fix react lifecycle warning by setting in useEffect (#6663) c4f9753
* **web:** fixes for Limits Menu on mobile layout (#6726) 7b44537
* **web:** limits gas estimates hotfix (#6729) 02de460
* **web:** merge Token fields in Apollo cache (#6611) 1d4853a
* **web:** use correct all-time swappers (#6635) c1394d6
### Code Refactoring
* **web:** Remove no longer needed ternary since BE update (#6688) 9af401a
web/5.17.0 web/5.17.1
\ No newline at end of file \ No newline at end of file
...@@ -191,7 +191,7 @@ export function PoolDetailsTransactionsTable({ ...@@ -191,7 +191,7 @@ export function PoolDetailsTransactionsTable({
), ),
}), }),
columnHelper.accessor( columnHelper.accessor(
(row) => (row.pool.token0.id.toLowerCase() === token0?.id.toLowerCase() ? row.amount0 : row.amount1), (row) => (row.pool.token0.id.toLowerCase() === token0?.address?.toLowerCase() ? row.amount0 : row.amount1),
{ {
id: 'input-amount', id: 'input-amount',
header: () => ( header: () => (
...@@ -219,7 +219,7 @@ export function PoolDetailsTransactionsTable({ ...@@ -219,7 +219,7 @@ export function PoolDetailsTransactionsTable({
} }
), ),
columnHelper.accessor( columnHelper.accessor(
(row) => (row.pool.token0.id.toLowerCase() === token0?.id.toLowerCase() ? row.amount1 : row.amount0), (row) => (row.pool.token0.id.toLowerCase() === token0?.address?.toLowerCase() ? row.amount1 : row.amount0),
{ {
id: 'output-amount', id: 'output-amount',
header: () => ( header: () => (
...@@ -282,7 +282,7 @@ export function PoolDetailsTransactionsTable({ ...@@ -282,7 +282,7 @@ export function PoolDetailsTransactionsTable({
formatNumber, formatNumber,
showLoadingSkeleton, showLoadingSkeleton,
sortState.sortBy, sortState.sortBy,
token0?.id, token0?.address,
token0?.symbol, token0?.symbol,
token1?.symbol, token1?.symbol,
]) ])
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment