Description:
When querying position data (id: 995256), the returned JSON shows equal values for collectedFeesToken0 and collectedFeesToken1, which appears to be incorrect as these should typically represent different fee amounts for each token.
Steps to reproduce:
- Run the following GraphQL query:
{
positions(where: { id: "995256" }) {
token0 {
decimals
}
token1 {
decimals
}
collectedFeesToken0
collectedFeesToken1
transaction {
timestamp
}
}
}
Description:
When querying position data (id: 995256), the returned JSON shows equal values for
collectedFeesToken0andcollectedFeesToken1, which appears to be incorrect as these should typically represent different fee amounts for each token.Steps to reproduce:
{ positions(where: { id: "995256" }) { token0 { decimals } token1 { decimals } collectedFeesToken0 collectedFeesToken1 transaction { timestamp } } }