-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: David Salami <wizdave97@gmail.com>
- Loading branch information
1 parent
fdb487e
commit 3d469fa
Showing
13 changed files
with
1,719 additions
and
84 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,10 @@ | ||
@polytope-labs/ismp-solidity/=node_modules/@polytope-labs/ismp-solidity/interfaces/ | ||
@polytope-labs/ismp-solidity-v1/=node_modules/@polytope-labs/ismp-solidity-v1/interfaces/ | ||
@openzeppelin/=node_modules/openzeppelin-solidity | ||
@polytope-labs/solidity-merkle-trees/=node_modules/@polytope-labs/solidity-merkle-trees/ | ||
@polytope-labs/erc6160/=node_modules/@polytope-labs/erc6160/src/ | ||
@uniswap/v2-periphery/=node_modules/@uniswap/v2-periphery | ||
@uniswap/v3-periphery/=node_modules/@uniswap/v3-periphery | ||
@uniswap/v3-core/=node_modules/@uniswap/v3-core | ||
stringutils/=lib/solidity-stringutils/src/ | ||
@sp1-contracts/=lib/sp1-contracts/contracts/src/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
// SPDX-License-Identifier: MIT | ||
pragma solidity ^0.8.0; | ||
|
||
import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; | ||
|
||
interface IWETH is IERC20 { | ||
function deposit() external payable; | ||
function withdraw(uint256) external; | ||
} |
Oops, something went wrong.