github.com/0xPolygon/supernets2-node@v0.0.0-20230711153321-2fe574524eaa/test/contracts/uniswap/v2/IWETH.sol (about)

     1  pragma solidity >=0.5.0;
     2  
     3  interface IWETH {
     4      function deposit() external payable;
     5      function transfer(address to, uint value) external returns (bool);
     6      function withdraw(uint) external;
     7  }