// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; import {IERC20} from "@openzeppelin/contracts@5.3.0/token/ERC20/IERC20.sol"; interface IWrappedNative is IERC20 { function deposit() external payable; function withdraw( uint256 wad ) external; }