reworked stack

This commit is contained in:
johba 2025-10-07 21:57:32 +00:00
parent 6cbb1781ce
commit f7ef56f65f
12 changed files with 853 additions and 458 deletions

View file

@ -244,6 +244,7 @@ type positions {
owner: String!
share: Float!
taxRate: Float!
taxRateIndex: Int!
kraikenDeposit: BigInt!
stakeDeposit: BigInt!
taxPaid: BigInt!
@ -303,6 +304,14 @@ input positionsFilter {
taxRate_lt: Float
taxRate_gte: Float
taxRate_lte: Float
taxRateIndex: Int
taxRateIndex_not: Int
taxRateIndex_in: [Int]
taxRateIndex_not_in: [Int]
taxRateIndex_gt: Int
taxRateIndex_lt: Int
taxRateIndex_gte: Int
taxRateIndex_lte: Int
kraikenDeposit: BigInt
kraikenDeposit_not: BigInt
kraikenDeposit_in: [BigInt]