Skip to content

Commit 6abb455

Browse files
ci(release): publish latest release
1 parent faa0986 commit 6abb455

4 files changed

Lines changed: 20 additions & 7 deletions

File tree

RELEASE

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
IPFS hash of the deployment:
2-
- CIDv0: `QmRZ4MQHa46SDudnvehSTwkJ8NakwdAfnWaG9seN4pRNty`
3-
- CIDv1: `bafybeibpydbyju4jr5tomkjlow3nwkkfk6ywxkqjfvilns6jn5xx5l5ybi`
2+
- CIDv0: `QmZtoiTCCa2eGpphEo3dzuQwLpVDckBtcUW2eJ8Ceas9G4`
3+
- CIDv1: `bafybeiflvvjt2rm7kvnqg5obwb7bovk4jwujfe76dmhltmzftp5hd5duze`
44

55
The latest release is always mirrored at [app.uniswap.org](https://app.uniswap.org).
66

@@ -10,5 +10,5 @@ You can also access the Uniswap Interface from an IPFS gateway.
1010
Your Uniswap settings are never remembered across different URLs.
1111

1212
IPFS gateways:
13-
- https://bafybeibpydbyju4jr5tomkjlow3nwkkfk6ywxkqjfvilns6jn5xx5l5ybi.ipfs.dweb.link/
14-
- [ipfs://QmRZ4MQHa46SDudnvehSTwkJ8NakwdAfnWaG9seN4pRNty/](ipfs://QmRZ4MQHa46SDudnvehSTwkJ8NakwdAfnWaG9seN4pRNty/)
13+
- https://bafybeiflvvjt2rm7kvnqg5obwb7bovk4jwujfe76dmhltmzftp5hd5duze.ipfs.dweb.link/
14+
- [ipfs://QmZtoiTCCa2eGpphEo3dzuQwLpVDckBtcUW2eJ8Ceas9G4/](ipfs://QmZtoiTCCa2eGpphEo3dzuQwLpVDckBtcUW2eJ8Ceas9G4/)

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
web/5.152.4
1+
web/5.152.5

apps/web/src/features/Toucan/Config/config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ const AUCTION_METADATA_OVERRIDES: Record<string, AuctionMetadataOverride> = {
5050
logoUrl: '/images/logos/strato-token-launch-logo.jpeg',
5151
tradingRestrictedUntilTge: true,
5252
},
53-
'1-0xb10afc08888a2f9946bdc991f4b0c8d3ce02f9f9': {
53+
'1-0xe172e9b6cfbeeb5593bdce3f077356fdb33af904': {
5454
logoUrl: '/images/logos/fold-token-launch-logo.jpeg',
5555
},
5656
}
@@ -120,5 +120,5 @@ export const DEFAULT_VERIFIED_AUCTION_IDS = [
120120
'1_0xb3079Ec6b82f22A1ABfDCA1A22659aB07Cdf2f0F',
121121
'1_0xfFDab1083fCbBCEE32997795388B3D61Ebab786E',
122122
'1_0x20eEBd78151EAe9Ed2380AC613204aaF5CA0cd24',
123-
'1_0xD9E8355f9f57185928347a5BdDEe164006b16e58',
123+
'1_0x687Cc38d8279dF3352b64cF3EC1fe8e033933595', // Interfold (FOLD)
124124
]

apps/web/src/features/Toucan/hooks/useTopAuctions/useTopAuctions.ts

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,14 @@ import { useChainIdFromUrlParam } from '~/utils/params/chainParams'
2222

2323
export const AUCTION_LIST_API_PAGE_SIZE = 200
2424

25+
// TEMP frontend stopgap: hide abandoned auctions from the Explore "top auctions" list until the
26+
// backend excludes them from ListTopAuctions. Direct auction links still resolve. Ids use the same
27+
// `${chainId}_${checksummedAuctionAddress}` form as DEFAULT_VERIFIED_AUCTION_IDS and are matched
28+
// exactly against the backend auctionId (mirrors the verified check). Remove once the backend ships.
29+
const HIDDEN_AUCTION_IDS = new Set<string>([
30+
'1_0xD9E8355f9f57185928347a5BdDEe164006b16e58', // Abandoned Interfold (FOLD) auction, superseded by 0x687Cc3...
31+
])
32+
2533
export function auctionCommittedVolumeComparator(a: EnrichedAuction, b: EnrichedAuction): number {
2634
// Use USD values for cross-currency comparison (follows portfolio balances pattern)
2735
if (a.auction?.totalBidVolumeUsd === undefined) {
@@ -251,6 +259,11 @@ export function useTopAuctions(): {
251259
}
252260
})
253261
.filter((auctionWithInfo) => {
262+
// TEMP: hide abandoned auctions (see HIDDEN_AUCTION_IDS) pending backend ListTopAuctions exclusion
263+
const auctionId = auctionWithInfo.auction?.auctionId
264+
if (auctionId && HIDDEN_AUCTION_IDS.has(auctionId)) {
265+
return false
266+
}
254267
// Filter out testnet chains when testnet mode is not enabled
255268
// oxlint-disable-next-line no-shadow
256269
const chainId = auctionWithInfo.auction?.chainId

0 commit comments

Comments
 (0)