diff --git a/RELEASE b/RELEASE index a4a56027eca..85ecbfbae12 100644 --- a/RELEASE +++ b/RELEASE @@ -1,6 +1,6 @@ IPFS hash of the deployment: -- CIDv0: `QmSoRoBJ1TPLdsbuk9ZHUhYTBT3qvVkBKZQSEZLCUySwy1` -- CIDv1: `bafybeiccjlkewwmtc7kfcudsiwftcnjxtldt42laqnvbs3o66xagosz52a` +- CIDv0: `QmdbU9rZkWxKta3MZBfefXEr93qjHYPYvB1C5dr8ndr4dR` +- CIDv1: `bafybeihcvmkix5keffnjvlvhfy2vse7m73mkqxorpupokxoqjh55wd426q` The latest release is always mirrored at [app.uniswap.org](https://app.uniswap.org). @@ -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://bafybeiccjlkewwmtc7kfcudsiwftcnjxtldt42laqnvbs3o66xagosz52a.ipfs.dweb.link/ -- https://bafybeiccjlkewwmtc7kfcudsiwftcnjxtldt42laqnvbs3o66xagosz52a.ipfs.cf-ipfs.com/ -- [ipfs://QmSoRoBJ1TPLdsbuk9ZHUhYTBT3qvVkBKZQSEZLCUySwy1/](ipfs://QmSoRoBJ1TPLdsbuk9ZHUhYTBT3qvVkBKZQSEZLCUySwy1/) +- https://bafybeihcvmkix5keffnjvlvhfy2vse7m73mkqxorpupokxoqjh55wd426q.ipfs.dweb.link/ +- https://bafybeihcvmkix5keffnjvlvhfy2vse7m73mkqxorpupokxoqjh55wd426q.ipfs.cf-ipfs.com/ +- [ipfs://QmdbU9rZkWxKta3MZBfefXEr93qjHYPYvB1C5dr8ndr4dR/](ipfs://QmdbU9rZkWxKta3MZBfefXEr93qjHYPYvB1C5dr8ndr4dR/) -### 5.44.2 (2024-08-29) +### 5.44.3 (2024-08-30) ### Bug Fixes -* **web:** use input and output currency info for derived swap info - … (#11399) 758f343 +* **web:** add link to vote - prod (#11424) 6c154d5 diff --git a/VERSION b/VERSION index 0d88ffddf50..9b2023cecbc 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -web/5.44.2 \ No newline at end of file +web/5.44.3 \ No newline at end of file diff --git a/apps/web/src/components/NavBar/CompanyMenu/Content.tsx b/apps/web/src/components/NavBar/CompanyMenu/Content.tsx index 081416f0c62..c3cc398c5a8 100644 --- a/apps/web/src/components/NavBar/CompanyMenu/Content.tsx +++ b/apps/web/src/components/NavBar/CompanyMenu/Content.tsx @@ -28,6 +28,7 @@ export const useMenuContent = (): MenuSection[] => { { title: t('common.protocol'), items: [ + { label: t('common.vote'), href: 'https://vote.uniswapfoundation.org' }, { label: t('common.governance'), href: 'https://uniswap.org/governance' }, { label: t('common.developers'), href: 'https://uniswap.org/developers' }, ], diff --git a/packages/uniswap/src/i18n/locales/source/en-US.json b/packages/uniswap/src/i18n/locales/source/en-US.json index 7ddea98edc8..df8eeadc88c 100644 --- a/packages/uniswap/src/i18n/locales/source/en-US.json +++ b/packages/uniswap/src/i18n/locales/source/en-US.json @@ -625,6 +625,7 @@ "common.viewOnExplorer": "View on Explorer", "common.viewTransactionExplorer.link": "View transaction on Explorer", "common.volume": "Volume", + "common.vote": "Vote", "common.vote.cancelled": "Vote cancelled", "common.vote.failed": "Vote failed", "common.voted": "Voted",