Queries
Sample Queries
Try Out The Queries
Get First 10 Locks Where Locked Liquidity is Greater Than 0
{ locks(first: 10, where: { lockedLiquidity_gt: 0 }) { id pool { totalSupply token0 { id } token1 { id } } lockedPercent lockedLiquidity unlockDate owner { id } lockID }}Get All Locks After a Block
{ locks(where: { _change_block: { number_gte: 18200000 } }) { id pool { totalSupply } unlockDate amount0 amount1 lockedLiquidity }}Get All Locks For a Pool
Last updated