Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
I
interface
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
LuckySwap
interface
Commits
7b04a003
Commit
7b04a003
authored
Mar 07, 2024
by
Uniswap Labs Service Account
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ci(release): publish latest release
parent
eac088b8
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
34 deletions
+11
-34
RELEASE
RELEASE
+7
-30
VERSION
VERSION
+1
-1
PoolDetailsTransactionsTable.tsx
...onents/Pools/PoolDetails/PoolDetailsTransactionsTable.tsx
+3
-3
No files found.
RELEASE
View file @
7b04a003
IPFS hash of the deployment:
IPFS hash of the deployment:
- CIDv0: `Qm
WZERyNmMf7JhDQJ8mXYLPdchuQjWNdc5Z3sKN6C9bsL9
`
- CIDv0: `Qm
TFgNJaQqAaTCCyb3Zvz9jyLpQfB9Xh25WcvebZz6G1Pd
`
- CIDv1: `bafybei
d2c2mdeiiysuldtcrlma2oaydsigt4ev55cttcb53zk6ldw7cozy
`
- CIDv1: `bafybei
cjart6xnqnhn2wxxtaygvl327ad3dtufggocex2pczejucjiwhna
`
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://bafybei
d2c2mdeiiysuldtcrlma2oaydsigt4ev55cttcb53zk6ldw7cozy
.ipfs.dweb.link/
- https://bafybei
cjart6xnqnhn2wxxtaygvl327ad3dtufggocex2pczejucjiwhna
.ipfs.dweb.link/
- https://bafybei
d2c2mdeiiysuldtcrlma2oaydsigt4ev55cttcb53zk6ldw7cozy
.ipfs.cf-ipfs.com/
- https://bafybei
cjart6xnqnhn2wxxtaygvl327ad3dtufggocex2pczejucjiwhna
.ipfs.cf-ipfs.com/
- [ipfs://Qm
WZERyNmMf7JhDQJ8mXYLPdchuQjWNdc5Z3sKN6C9bsL9/](ipfs://QmWZERyNmMf7JhDQJ8mXYLPdchuQjWNdc5Z3sKN6C9bsL9
/)
- [ipfs://Qm
TFgNJaQqAaTCCyb3Zvz9jyLpQfB9Xh25WcvebZz6G1Pd/](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
VERSION
View file @
7b04a003
web/5.17.0
web/5.17.1
\ No newline at end of file
\ No newline at end of file
apps/web/src/components/Pools/PoolDetails/PoolDetailsTransactionsTable.tsx
View file @
7b04a003
...
@@ -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
,
])
])
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment