llmy-codegraph 1.0.0

All-in-one LLM utilities.
Documentation
1
2
3
4
5
6
7
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;

interface IVault {
    function deposit() external payable;
    function withdraw(uint256 amount) external;
}