{
    "Function": "getManyStakingAmounts",
    "File": "src/mock/MockRonStaking.sol",
    "Parent Contracts": [
        "src/interfaces/IRoninValidators.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function getManyStakingAmounts(\n        address[] calldata _consensusAddrs,\n        address[] calldata userList\n    ) external view returns (uint256[] memory) {\n        uint256[] memory amounts = new uint256[](userList.length);\n        for (uint256 i = 0; i < userList.length; i++) {\n            amounts[i] = stakingAmounts[_consensusAddrs[i]][userList[i]];\n        }\n        return amounts;\n    }"
}