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; }