{
    "Function": "deposit",
    "File": "contracts/lib/solmate/src/tokens/WETH.sol",
    "Parent Contracts": [
        "contracts/lib/solmate/src/tokens/ERC20.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "_mint"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function deposit() public payable virtual {\n        _mint(msg.sender, msg.value);\n\n        emit Deposit(msg.sender, msg.value);\n    }"
}