Skip to content

Commit 4125476

Browse files
ci(release): publish latest release
1 parent 58089c1 commit 4125476

File tree

5 files changed

+19
-14
lines changed

5 files changed

+19
-14
lines changed

RELEASE

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
IPFS hash of the deployment:
2-
- CIDv0: `QmbPB8nBMG3yXcCXDfNLGGFeqapooM1hXEesT6YVHR4A2T`
3-
- CIDv1: `bafybeigbzv7gphjjopikparoblamcq56dkcjsm4jyyaajj3fveke2cfwca`
2+
- CIDv0: `QmQnLKt6cNikkDbuWwWk4ff53z8nE8UkNvSaFaASBUe88u`
3+
- CIDv1: `bafybeibejoyf6nwfx7e2yegqssu3gtcx7oifdiqccnuf3hbzyhrvxqwchy`
44

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

@@ -10,9 +10,14 @@ 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://bafybeigbzv7gphjjopikparoblamcq56dkcjsm4jyyaajj3fveke2cfwca.ipfs.dweb.link/
14-
- [ipfs://QmbPB8nBMG3yXcCXDfNLGGFeqapooM1hXEesT6YVHR4A2T/](ipfs://QmbPB8nBMG3yXcCXDfNLGGFeqapooM1hXEesT6YVHR4A2T/)
13+
- https://bafybeibejoyf6nwfx7e2yegqssu3gtcx7oifdiqccnuf3hbzyhrvxqwchy.ipfs.dweb.link/
14+
- [ipfs://QmQnLKt6cNikkDbuWwWk4ff53z8nE8UkNvSaFaASBUe88u/](ipfs://QmQnLKt6cNikkDbuWwWk4ff53z8nE8UkNvSaFaASBUe88u/)
1515

16-
### 5.119.4 (2025-11-24)
16+
### 5.119.5 (2025-11-24)
17+
18+
19+
### Bug Fixes
20+
21+
* **web:** Monad cherry-picks for web 2 (#25752) f66f7d8
1722

1823

VERSION

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

packages/uniswap/src/components/TokenSelector/TokenSelectorList.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ const TokenOptionItem = memo(function _TokenOptionItem({
6565
value: tokenOption.quantity,
6666
type: NumberType.TokenTx,
6767
})
68-
const fiatBalance = convertFiatAmountFormatted(tokenOption.balanceUSD, NumberType.FiatTokenPrice)
68+
const fiatBalance = convertFiatAmountFormatted(tokenOption.balanceUSD, NumberType.FiatTokenQuantity)
6969

7070
const { isTestnetModeEnabled } = useEnabledChains()
7171
const balanceText = isTestnetModeEnabled ? tokenBalance : fiatBalance

packages/utilities/src/format/localeBased.test.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -83,11 +83,11 @@ it('formats fiat estimates for tokens correctly', () => {
8383
expect(formatNumber({ input: 1234.5678, type: NumberType.FiatTokenPrice, locale: 'en-US' })).toBe('$1,234.57')
8484

8585
expect(formatNumber({ input: 0.010235, type: NumberType.FiatTokenPrice, locale: 'en-US' })).toBe('$0.0102')
86-
expect(formatNumber({ input: 0.001231, type: NumberType.FiatTokenPrice, locale: 'en-US' })).toBe('<$0.01')
87-
expect(formatNumber({ input: 0.00001231, type: NumberType.FiatTokenPrice, locale: 'en-US' })).toBe('<$0.01')
86+
expect(formatNumber({ input: 0.001231, type: NumberType.FiatTokenPrice, locale: 'en-US' })).toBe('$0.00123')
87+
expect(formatNumber({ input: 0.00001231, type: NumberType.FiatTokenPrice, locale: 'en-US' })).toBe('$0.0000123')
8888

89-
expect(formatNumber({ input: 1.234e-7, type: NumberType.FiatTokenPrice, locale: 'en-US' })).toBe('<$0.01')
90-
expect(formatNumber({ input: 9.876e-9, type: NumberType.FiatTokenPrice, locale: 'en-US' })).toBe('<$0.01')
89+
expect(formatNumber({ input: 1.234e-7, type: NumberType.FiatTokenPrice, locale: 'en-US' })).toBe('$0.000000123')
90+
expect(formatNumber({ input: 9.876e-9, type: NumberType.FiatTokenPrice, locale: 'en-US' })).toBe('<$0.00000001')
9191
})
9292

9393
it('formats fiat estimates for token stats correctly', () => {

packages/utilities/src/format/localeBasedFormats.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -515,9 +515,9 @@ export const fiatTokenDetailsFormatter: Formatter = {
515515
export const fiatTokenPricesFormatter: Formatter = {
516516
rules: [
517517
{
518-
upperBound: 0.01,
519-
overrideValue: 0.01,
520-
formatter: TwoDecimalsCurrency,
518+
upperBound: 0.00000001,
519+
overrideValue: 0.00000001,
520+
formatter: SmallestNumCurrency,
521521
postFormatModifier: lessThanPostFormatModifier,
522522
},
523523
{ upperBound: 1, formatter: ThreeSigFigsCurrency },

0 commit comments

Comments
 (0)