diff --git a/RELEASE b/RELEASE index 90c84ab72af..6717d789fcd 100644 --- a/RELEASE +++ b/RELEASE @@ -1,6 +1,6 @@ IPFS hash of the deployment: -- CIDv0: `QmaZ2DyycDgi2Md5z6NFpdaBCPYkExFJRRz5FDG47zU4Yt` -- CIDv1: `bafybeifvo6feafgzml423kyegp43hr7fss4il43hmdzxzlmdaapjcxr3nu` +- CIDv0: `QmfVmJpbRuGLnvBgrae9nRPdC7gtevKWf6aLQDa3f4tmGt` +- CIDv1: `bafybeih65ro3f4a4of2il6pomh5hgoquoskx7lgdqogfo4tmsmloplufwe` The latest release is always mirrored at [app.uniswap.org](https://app.uniswap.org). @@ -10,15 +10,15 @@ You can also access the Uniswap Interface from an IPFS gateway. Your Uniswap settings are never remembered across different URLs. IPFS gateways: -- https://bafybeifvo6feafgzml423kyegp43hr7fss4il43hmdzxzlmdaapjcxr3nu.ipfs.dweb.link/ -- https://bafybeifvo6feafgzml423kyegp43hr7fss4il43hmdzxzlmdaapjcxr3nu.ipfs.cf-ipfs.com/ -- [ipfs://QmaZ2DyycDgi2Md5z6NFpdaBCPYkExFJRRz5FDG47zU4Yt/](ipfs://QmaZ2DyycDgi2Md5z6NFpdaBCPYkExFJRRz5FDG47zU4Yt/) +- https://bafybeih65ro3f4a4of2il6pomh5hgoquoskx7lgdqogfo4tmsmloplufwe.ipfs.dweb.link/ +- https://bafybeih65ro3f4a4of2il6pomh5hgoquoskx7lgdqogfo4tmsmloplufwe.ipfs.cf-ipfs.com/ +- [ipfs://QmfVmJpbRuGLnvBgrae9nRPdC7gtevKWf6aLQDa3f4tmGt/](ipfs://QmfVmJpbRuGLnvBgrae9nRPdC7gtevKWf6aLQDa3f4tmGt/) -### 5.25.1 (2024-04-22) +### 5.25.2 (2024-04-25) ### Bug Fixes -* **web:** support swapping spam tokens (#7794) 13bd6f5 +* **web:** Flip logic for Sells/Buys (prod) (#7881) bcc2955 diff --git a/VERSION b/VERSION index 5eb8373aa0d..acf5e763fa5 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -web/5.25.1 \ No newline at end of file +web/5.25.2 \ No newline at end of file diff --git a/apps/web/src/components/Tokens/TokenDetails/tables/TransactionsTable.tsx b/apps/web/src/components/Tokens/TokenDetails/tables/TransactionsTable.tsx index d0eabb86699..54321aa3b5b 100644 --- a/apps/web/src/components/Tokens/TokenDetails/tables/TransactionsTable.tsx +++ b/apps/web/src/components/Tokens/TokenDetails/tables/TransactionsTable.tsx @@ -96,7 +96,7 @@ export function TransactionsTable({ chainId, referenceToken }: { chainId: ChainI amount: parseFloat(transaction.token1Quantity), token: transaction.token1, } - const token0IsBeingSold = parseFloat(transaction.token0Quantity) < 0 + const token0IsBeingSold = parseFloat(transaction.token0Quantity) > 0 return { hash: transaction.hash, timestamp: transaction.timestamp,