Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
I
interface
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
LuckySwap
interface
Commits
503a3331
Unverified
Commit
503a3331
authored
Mar 17, 2023
by
cartcrom
Committed by
GitHub
Mar 17, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: use proper apollo client for ticks query (#6185)
fix: pass thegraph client to ticks query instead of default
parent
6fee37c4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
0 deletions
+2
-0
usePoolTickData.ts
src/hooks/usePoolTickData.ts
+2
-0
No files found.
src/hooks/usePoolTickData.ts
View file @
503a3331
...
@@ -5,6 +5,7 @@ import { SupportedChainId } from 'constants/chains'
...
@@ -5,6 +5,7 @@ import { SupportedChainId } from 'constants/chains'
import
{
ZERO_ADDRESS
}
from
'
constants/misc
'
import
{
ZERO_ADDRESS
}
from
'
constants/misc
'
import
{
useAllV3TicksQuery
}
from
'
graphql/thegraph/__generated__/types-and-hooks
'
import
{
useAllV3TicksQuery
}
from
'
graphql/thegraph/__generated__/types-and-hooks
'
import
{
TickData
,
Ticks
}
from
'
graphql/thegraph/AllV3TicksQuery
'
import
{
TickData
,
Ticks
}
from
'
graphql/thegraph/AllV3TicksQuery
'
import
{
apolloClient
}
from
'
graphql/thegraph/apollo
'
import
JSBI
from
'
jsbi
'
import
JSBI
from
'
jsbi
'
import
{
useSingleContractMultipleData
}
from
'
lib/hooks/multicall
'
import
{
useSingleContractMultipleData
}
from
'
lib/hooks/multicall
'
import
ms
from
'
ms.macro
'
import
ms
from
'
ms.macro
'
...
@@ -160,6 +161,7 @@ function useTicksFromSubgraph(
...
@@ -160,6 +161,7 @@ function useTicksFromSubgraph(
variables
:
{
poolAddress
:
poolAddress
?.
toLowerCase
(),
skip
},
variables
:
{
poolAddress
:
poolAddress
?.
toLowerCase
(),
skip
},
skip
:
!
poolAddress
,
skip
:
!
poolAddress
,
pollInterval
:
ms
`30s`
,
pollInterval
:
ms
`30s`
,
client
:
apolloClient
,
})
})
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment