File tree Expand file tree Collapse file tree 2 files changed +13
-2
lines changed Expand file tree Collapse file tree 2 files changed +13
-2
lines changed Original file line number Diff line number Diff line change 3
3
4
4
pragma solidity ^ 0.8.0 ;
5
5
6
- // import "./IWETH.sol";
6
+ import "./IWETH.sol " ;
7
7
import "./IWormhole.sol " ;
8
8
9
9
interface ITokenBridge {
@@ -149,7 +149,7 @@ interface ITokenBridge {
149
149
150
150
function tokenImplementation () external view returns (address );
151
151
152
- // function WETH() external view returns (IWETH);
152
+ function WETH () external view returns (IWETH);
153
153
154
154
function outstandingBridged (address token ) external view returns (uint256 );
155
155
Original file line number Diff line number Diff line change
1
+ // contracts/Bridge.sol
2
+ // SPDX-License-Identifier: Apache 2
3
+
4
+ pragma solidity ^ 0.8.0 ;
5
+
6
+ import "./IERC20.sol " ;
7
+
8
+ interface IWETH is IERC20 {
9
+ function deposit () external payable ;
10
+ function withdraw (uint amount ) external ;
11
+ }
You can’t perform that action at this time.
0 commit comments