Skip to content

Commit 67f9a00

Browse files
ci(release): publish latest release
1 parent 340b8bf commit 67f9a00

File tree

5 files changed

+14
-19
lines changed

5 files changed

+14
-19
lines changed

RELEASE

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
IPFS hash of the deployment:
2-
- CIDv0: `QmW1GSntr72wmj3wkvVSTiUBuJhSAyYqbT2vByPh6F4pok`
3-
- CIDv1: `bafybeidr4zetpcfxiykgv54gfbgajwppixch3baghzdxvy5npks2tl76vm`
2+
- CIDv0: `QmdAodaydg2G1DMoDLKRK39QsrN47iPkFTsbAF6fXtkghx`
3+
- CIDv1: `bafybeig4lgkyet2btz5jd2xn52zuuiw7l5orpq5ndnk7imuaund45l5dnm`
44

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

@@ -10,14 +10,9 @@ 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://bafybeidr4zetpcfxiykgv54gfbgajwppixch3baghzdxvy5npks2tl76vm.ipfs.dweb.link/
14-
- [ipfs://QmW1GSntr72wmj3wkvVSTiUBuJhSAyYqbT2vByPh6F4pok/](ipfs://QmW1GSntr72wmj3wkvVSTiUBuJhSAyYqbT2vByPh6F4pok/)
13+
- https://bafybeig4lgkyet2btz5jd2xn52zuuiw7l5orpq5ndnk7imuaund45l5dnm.ipfs.dweb.link/
14+
- [ipfs://QmdAodaydg2G1DMoDLKRK39QsrN47iPkFTsbAF6fXtkghx/](ipfs://QmdAodaydg2G1DMoDLKRK39QsrN47iPkFTsbAF6fXtkghx/)
1515

16-
### 5.120.8 (2025-12-05)
17-
18-
19-
### Bug Fixes
20-
21-
* **web:** tamagui Tooltip Adapt context && increase Popover zIndexes (#26149) 5c2aa4f
16+
### 5.120.9 (2025-12-10)
2217

2318

VERSION

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

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)