File tree Expand file tree Collapse file tree 5 files changed +20
-23
lines changed
apps/web/src/appGraphql/data/pools
packages/api/src/clients/graphql Expand file tree Collapse file tree 5 files changed +20
-23
lines changed Original file line number Diff line number Diff line change 11IPFS hash of the deployment:
2- - CIDv0: `QmPSswCMSykfj3FKKV2dzxwbedFyRJZhMkdzSEgvvPfRAb `
3- - CIDv1: `bafybeiaqoqqesaqanu2hofn4n2lhef4mweqlx2s5s2wxc747omlwa7nixq `
2+ - CIDv0: `QmUiycg43tn8V8uqKcRMeSFZPYnX9qCHFK88Bg1YznJt5F `
3+ - CIDv1: `bafybeic63zdn3mceqpboz4wckzubcretvndr7bv472afnxifpgpqdoly7i `
44
55The 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.
1010Your Uniswap settings are never remembered across different URLs.
1111
1212IPFS 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
Original file line number Diff line number Diff line change 1- web/5.118.1
1+ web/5.118.2
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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"""
2211Tells 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"""
5544directive @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 ]
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments