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 Apr 25, 2024
1 parent 9209ca4 commit 8ced17b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
14 changes: 7 additions & 7 deletions RELEASE
Original file line number Diff line number Diff line change
@@ -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).

Expand All @@ -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


2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
web/5.25.1
web/5.25.2
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 8ced17b

Please sign in to comment.