// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.5.0; pragma abicoder v2; // TODO: change to import from @airdao/astra-cl-core import '@airdao/astra-cl-core/contracts/interfaces/IAstraCLPool.sol'; import '../lens/TickLens.sol'; /// @title Tick Lens contract contract TickLensTest is TickLens { function getGasCostOfGetPopulatedTicksInWord(address pool, int16 tickBitmapIndex) external view returns (uint256) { uint256 gasBefore = gasleft(); getPopulatedTicksInWord(pool, tickBitmapIndex); return gasBefore - gasleft(); } }