Skip to content

Commit 173a940

Browse files
ci(release): publish latest release
1 parent 0ef926c commit 173a940

File tree

5 files changed

+20
-23
lines changed

5 files changed

+20
-23
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: `QmPSswCMSykfj3FKKV2dzxwbedFyRJZhMkdzSEgvvPfRAb`
3-
- CIDv1: `bafybeiaqoqqesaqanu2hofn4n2lhef4mweqlx2s5s2wxc747omlwa7nixq`
2+
- CIDv0: `QmUiycg43tn8V8uqKcRMeSFZPYnX9qCHFK88Bg1YznJt5F`
3+
- CIDv1: `bafybeic63zdn3mceqpboz4wckzubcretvndr7bv472afnxifpgpqdoly7i`
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://bafybeiaqoqqesaqanu2hofn4n2lhef4mweqlx2s5s2wxc747omlwa7nixq.ipfs.dweb.link/
14-
- [ipfs://QmPSswCMSykfj3FKKV2dzxwbedFyRJZhMkdzSEgvvPfRAb/](ipfs://QmPSswCMSykfj3FKKV2dzxwbedFyRJZhMkdzSEgvvPfRAb/)
13+
- https://bafybeic63zdn3mceqpboz4wckzubcretvndr7bv472afnxifpgpqdoly7i.ipfs.dweb.link/
14+
- [ipfs://QmUiycg43tn8V8uqKcRMeSFZPYnX9qCHFK88Bg1YznJt5F/](ipfs://QmUiycg43tn8V8uqKcRMeSFZPYnX9qCHFK88Bg1YznJt5F/)
1515

16-
### 5.118.1 (2025-11-13)
17-
18-
19-
### Bug Fixes
20-
21-
* **web:** fix tick invariant error (#25391) e074291
16+
### 5.118.2 (2025-11-15)
2217

2318

VERSION

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

apps/web/src/appGraphql/data/pools/usePoolData.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ export function usePoolData({
130130
const pool = dataV4?.v4Pool ?? dataV3?.v3Pool ?? dataV2?.v2Pair ?? undefined
131131
const feeTier: FeeData = {
132132
feeAmount: dataV4?.v4Pool?.feeTier ?? dataV3?.v3Pool?.feeTier ?? V2_DEFAULT_FEE_TIER,
133-
tickSpacing: DEFAULT_TICK_SPACING,
133+
tickSpacing: dataV4?.v4Pool?.tickSpacing ?? DEFAULT_TICK_SPACING,
134134
isDynamic: dataV4?.v4Pool?.isDynamicFee ?? false,
135135
}
136136
const poolId = dataV4?.v4Pool?.poolId ?? dataV3?.v3Pool?.address ?? dataV2?.v2Pair?.address ?? poolIdOrAddress

packages/api/src/clients/graphql/schema.graphql

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,6 @@ directive @aws_auth(
77
cognito_groups: [String]
88
) on FIELD_DEFINITION
99

10-
"""
11-
Tells the service which subscriptions will be published to when this mutation is
12-
called. This directive is deprecated use @aws_susbscribe directive instead.
13-
"""
14-
directive @aws_publish(
15-
"""
16-
List of subscriptions which will be published to when this mutation is called.
17-
"""
18-
subscriptions: [String]
19-
) on FIELD_DEFINITION
20-
2110
"""
2211
Tells the service this field/object has access authorized by an API key.
2312
"""
@@ -54,6 +43,17 @@ Tells the service this field/object has access authorized by an OIDC token.
5443
"""
5544
directive @aws_oidc on OBJECT | FIELD_DEFINITION
5645

46+
"""
47+
Tells the service which subscriptions will be published to when this mutation is
48+
called. This directive is deprecated use @aws_susbscribe directive instead.
49+
"""
50+
directive @aws_publish(
51+
"""
52+
List of subscriptions which will be published to when this mutation is called.
53+
"""
54+
subscriptions: [String]
55+
) on FIELD_DEFINITION
56+
5757
"""
5858
Types, unions, and inputs (alphabetized):
5959
These are colocated to highlight the relationship between some types and their inputs.
@@ -1554,6 +1554,7 @@ type V4Pool {
15541554
feeTier: Float
15551555
isDynamicFee: Boolean
15561556
hook: V4PoolHook
1557+
tickSpacing: Int
15571558
totalLiquidityPercentChange24h: Amount
15581559
cumulativeVolume(duration: HistoryDuration!): Amount
15591560
historicalVolume(duration: HistoryDuration!): [TimestampedAmount]

packages/api/src/clients/graphql/web/pool.graphql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ query V4Pool($chain: Chain!, $poolId: String!) {
6262
protocolVersion
6363
feeTier
6464
isDynamicFee
65+
tickSpacing
6566
poolId
6667
hook {
6768
id

0 commit comments

Comments
 (0)