{
    "Function": "deposit",
    "File": "contracts/mock/MockPickleJar.sol",
    "Parent Contracts": [
        "contracts/mock/MockERC20.sol"
    ],
    "High-Level Calls": [
        "IERC20"
    ],
    "Internal Calls": [
        "_mint",
        "getRatio"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function deposit(uint _amount) public {\n        t3crv.transferFrom(msg.sender, address(this), _amount);\n        uint256 shares = _amount * 1000000000000000000 / getRatio();\n        _mint(msg.sender, shares);\n    }"
}