Skip to content

Commit 448c517

Browse files
ci(release): publish latest release
1 parent 417e772 commit 448c517

4 files changed

Lines changed: 11 additions & 5 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: `QmR6p18nhEFKM7Rn3SgY16Z9LpzTY3JWdLaoMEdAGTZJSZ`
3-
- CIDv1: `bafybeibja5ybbbxkredjdylxbrewrauqm6vyxfe3vhyyh3rrkuapywhzny`
2+
- CIDv0: `QmXvDjMAjd3MsWbZ2mJCejxJnvHKFYDCC3MWqA3RxjT1jT`
3+
- CIDv1: `bafybeieokkx3yqfvw7pewt4sgv4b6rya7zsmqer4iwhw63brwrm6evcdvy`
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://bafybeibja5ybbbxkredjdylxbrewrauqm6vyxfe3vhyyh3rrkuapywhzny.ipfs.dweb.link/
14-
- [ipfs://QmR6p18nhEFKM7Rn3SgY16Z9LpzTY3JWdLaoMEdAGTZJSZ/](ipfs://QmR6p18nhEFKM7Rn3SgY16Z9LpzTY3JWdLaoMEdAGTZJSZ/)
13+
- https://bafybeieokkx3yqfvw7pewt4sgv4b6rya7zsmqer4iwhw63brwrm6evcdvy.ipfs.dweb.link/
14+
- [ipfs://QmXvDjMAjd3MsWbZ2mJCejxJnvHKFYDCC3MWqA3RxjT1jT/](ipfs://QmXvDjMAjd3MsWbZ2mJCejxJnvHKFYDCC3MWqA3RxjT1jT/)

VERSION

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

apps/web/src/pages/TokenDetails/components/info/TokenDescription.test.tsx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@ import { GraphQLApi } from '@universe/api'
33
import { FeatureFlags, useFeatureFlag } from '@universe/gating'
44
import { USDC_MAINNET } from 'uniswap/src/constants/tokens'
55
import { TestID } from 'uniswap/src/test/fixtures/testIDs'
6+
import { ZERO_PERCENT } from '~/constants/misc'
67
import { useCurrency } from '~/hooks/Tokens'
8+
import { useSwapTaxes } from '~/hooks/useSwapTaxes'
79
import { TokenDescription } from '~/pages/TokenDetails/components/info/TokenDescription'
810
import type { TDPState } from '~/pages/TokenDetails/context/createTDPStore'
911
import { useTDPStore } from '~/pages/TokenDetails/context/useTDPStore'
@@ -14,6 +16,7 @@ import { render, screen } from '~/test-utils/render'
1416
import { validTokenProjectResponse } from '~/test-utils/tokens/fixtures'
1517

1618
vi.mock('~/hooks/Tokens')
19+
vi.mock('~/hooks/useSwapTaxes')
1720

1821
vi.mock('~/pages/TokenDetails/context/useTDPStore', () => ({
1922
useTDPStore: vi.fn(),
@@ -38,6 +41,7 @@ const MULTI_CHAIN_MAP = {
3841
describe('TokenDescription', () => {
3942
beforeEach(() => {
4043
mocked(useCurrency).mockReturnValue(validUSDCCurrency)
44+
mocked(useSwapTaxes).mockReturnValue({ inputTax: ZERO_PERCENT, outputTax: ZERO_PERCENT })
4145
mocked(useFeatureFlag).mockReturnValue(false)
4246
})
4347

packages/uniswap/src/features/providers/resolveRpcConfig.web.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ const SHARED_UNI_RPC_CONFIG = {
3030

3131
const webResolveUniRpcConfig = createUniRpcConfigResolver({
3232
...SHARED_UNI_RPC_CONFIG,
33+
// Web app always routes through UniRPC; extension stays gated below.
34+
getFeatureFlag: () => true,
3335
credentials: 'include',
3436
})
3537

0 commit comments

Comments
 (0)