{
    "Function": "getMostPremium",
    "File": "contracts/v3/strategies/MIMConvexStrategy.sol",
    "Parent Contracts": [
        "contracts/v3/strategies/BaseStrategy.sol",
        "contracts/v3/interfaces/IStrategy.sol"
    ],
    "High-Level Calls": [
        "IStableSwap2Pool",
        "IStableSwap2Pool"
    ],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function getMostPremium() public view returns (address, uint256) {\n        // both MIM and 3CRV have 18 decimals\n        if (stableSwap2Pool.balances(0) > stableSwap2Pool.balances(1)) {\n            return (crv3, 1);\n        }\n\n        return (mim, 0); // If they're somehow equal, we just want MIM\n    }"
}