{
    "Function": "getAccountLiquidity",
    "File": "contracts/SemiFungiblePositionManager.sol",
    "Parent Contracts": [
        "contracts/multicall/Multicall.sol",
        "contracts/tokens/ERC1155Minimal.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "abi.encodePacked()",
        "keccak256(bytes)"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function getAccountLiquidity(\n        address univ3pool,\n        address owner,\n        uint256 tokenType,\n        int24 tickLower,\n        int24 tickUpper\n    ) external view returns (uint256 accountLiquidities) {\n        /// Extract the account liquidity for a given uniswap pool, owner, token type, and ticks\n        /// @dev tokenType input here is the asset of the positions minted, this avoids put liquidity to be used for call, and vice-versa\n        accountLiquidities = s_accountLiquidity[\n            keccak256(abi.encodePacked(univ3pool, owner, tokenType, tickLower, tickUpper))\n        ];\n    }"
}