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 Dec 16, 2024
1 parent e140d21 commit 8bcc843
Show file tree
Hide file tree
Showing 350 changed files with 9,605 additions and 18,889 deletions.
5 changes: 0 additions & 5 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ types

apps/mobile/ios
apps/mobile/android
apps/mobile/.storybook/storybook.requires.ts

# extension

Expand All @@ -43,7 +42,3 @@ packages/uniswap/codegen.ts
# eslint partials

packages/eslint-config/restrictedImports.js

# generated

packages/uniswap/src/data/rest/conversionTracking/api
1 change: 0 additions & 1 deletion CODEOWNERS

This file was deleted.

28 changes: 7 additions & 21 deletions RELEASE
Original file line number Diff line number Diff line change
@@ -1,24 +1,10 @@
IPFS hash of the deployment:
- CIDv0: `QmXuD12tmkqjiuUJcoGU2voXN2gYimddzrqQHjQrKaHKsT`
- CIDv1: `bafybeieocbd53xpdug6dkelfrtzn2r5vt4fn3j2vxnb73plzax7vwjsiqy`
We are back with some new updates! Here’s the latest:

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

You can also access the Uniswap Interface from an IPFS gateway.
**BEWARE**: The Uniswap interface uses [`localStorage`](https://developer.mozilla.org/en-US/docs/Web/API/Window/localStorage) to remember your settings, such as which tokens you have imported.
**You should always use an IPFS gateway that enforces origin separation**, or our hosted deployment of the latest release at [app.uniswap.org](https://app.uniswap.org).
Your Uniswap settings are never remembered across different URLs.

IPFS gateways:
- https://bafybeieocbd53xpdug6dkelfrtzn2r5vt4fn3j2vxnb73plzax7vwjsiqy.ipfs.dweb.link/
- https://bafybeieocbd53xpdug6dkelfrtzn2r5vt4fn3j2vxnb73plzax7vwjsiqy.ipfs.cf-ipfs.com/
- [ipfs://QmXuD12tmkqjiuUJcoGU2voXN2gYimddzrqQHjQrKaHKsT/](ipfs://QmXuD12tmkqjiuUJcoGU2voXN2gYimddzrqQHjQrKaHKsT/)

### 5.62.3 (2024-12-14)


### Bug Fixes

* **web:** modal height fix (#14539) 76ce85c
Token Warnings: See more information about the tokens you’re attempting to swap, enriched with data from Blockaid.

Other changes:

- Increased manual slippage tolerance up to 50%
- Support for toggling between fiat and token input for fiat onramp
- Better dapp signing support
- Various bug fixes and performance improvements
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
web/5.62.3
mobile/1.41
8 changes: 4 additions & 4 deletions apps/extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@
"@svgr/webpack": "8.0.1",
"@tamagui/core": "1.114.4",
"@types/uuid": "9.0.1",
"@uniswap/analytics-events": "2.40.0",
"@uniswap/analytics-events": "2.39.0",
"@uniswap/uniswapx-sdk": "2.1.0-beta.18",
"@uniswap/universal-router-sdk": "4.7.0",
"@uniswap/v3-sdk": "3.19.0",
"@uniswap/v4-sdk": "1.12.0",
"@uniswap/universal-router-sdk": "4.5.2",
"@uniswap/v3-sdk": "3.18.1",
"@uniswap/v4-sdk": "1.10.3",
"dotenv-webpack": "8.0.1",
"ethers": "5.7.2",
"eventemitter3": "5.0.1",
Expand Down
13 changes: 11 additions & 2 deletions apps/extension/src/app/features/accounts/AccountSwitcherScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import { ScreenHeader } from 'src/app/components/layout/ScreenHeader'
import { AccountItem } from 'src/app/features/accounts/AccountItem'
import { CreateWalletModal } from 'src/app/features/accounts/CreateWalletModal'
import { EditLabelModal } from 'src/app/features/accounts/EditLabelModal'
import { useSortedAccountList } from 'src/app/features/accounts/useSortedAccountList'
import { useDappContext } from 'src/app/features/dapp/DappContext'
import { updateDappConnectedAddressFromExtension } from 'src/app/features/dapp/actions'
import { useDappConnectedAccounts } from 'src/app/features/dapp/hooks'
Expand Down Expand Up @@ -34,6 +33,7 @@ import { AddressDisplay } from 'wallet/src/components/accounts/AddressDisplay'
import { PlusCircle } from 'wallet/src/components/icons/PlusCircle'
import { MenuContent } from 'wallet/src/components/menu/MenuContent'
import { MenuContentItem } from 'wallet/src/components/menu/types'
import { useAccountList } from 'wallet/src/features/accounts/hooks'
import { createOnboardingAccount } from 'wallet/src/features/onboarding/createOnboardingAccount'
import { BackupType, SignerMnemonicAccount } from 'wallet/src/features/wallet/accounts/types'
import { createAccountsActions } from 'wallet/src/features/wallet/create/createAccountsSaga'
Expand Down Expand Up @@ -148,8 +148,17 @@ export function AccountSwitcherScreen(): JSX.Element {
onPress: (): void => setShowRemoveWalletModal(true),
},
]
const { data: accountBalanceData } = useAccountList({
addresses: accountAddresses,
notifyOnNetworkStatusChange: true,
})

const sortedAddressesByBalance = useSortedAccountList(accountAddresses)
const sortedAddressesByBalance = accountAddresses
.map((address) => {
const wallet = accountBalanceData?.portfolios?.find((portfolio) => portfolio?.ownerAddress === address)
return { address, balance: wallet?.tokensTotalDenominatedValue?.value }
})
.sort((a, b) => (b.balance ?? 0) - (a.balance ?? 0))

const contentShadowProps = {
shadowColor: colors.shadowColor.val,
Expand Down
127 changes: 0 additions & 127 deletions apps/extension/src/app/features/accounts/useSortedAccountList.test.ts

This file was deleted.

47 changes: 0 additions & 47 deletions apps/extension/src/app/features/accounts/useSortedAccountList.ts

This file was deleted.

114 changes: 0 additions & 114 deletions apps/extension/src/app/features/appRating/AppRatingModal.tsx

This file was deleted.

Loading

0 comments on commit 8bcc843

Please sign in to comment.