Skip to content

Commit

Permalink
evm: fix wormhole-solidity-sdk commit
Browse files Browse the repository at this point in the history
evm: fix imports
  • Loading branch information
a5-pickle committed Oct 2, 2024
1 parent 30f67d8 commit 1bc0f38
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion evm/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ test: dependencies
LIB_DEPS = foundry-rs/forge-std
LIB_DEPS += openzeppelin/openzeppelin-contracts@dc44c9f #4.9.6
LIB_DEPS += Uniswap/permit2@cc56ad0 #latest commit as per 22/04/2024
LIB_DEPS += wormhole-foundation/wormhole-solidity-sdk@b935ddc #post-merged branch
LIB_DEPS += wormhole-foundation/wormhole-solidity-sdk@60fb760 #post-merged branch
LIB_DEPS += wormhole-foundation/example-liquidity-layer@f57444f #main branch

# dynamically generate install rule for each lib dependency and add to depdenencies
Expand Down
1 change: 1 addition & 0 deletions evm/foundry.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ remappings = [
"@openzeppelin/=lib/openzeppelin-contracts/contracts/",
"@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/",
"forge-std/=lib/forge-std/src/",
"permit2/=lib/permit2/src/",
"wormhole-sdk/=lib/wormhole-solidity-sdk/src/",
"liquidity-layer/=lib/example-liquidity-layer/evm/src/",
"local-modules/=lib/example-liquidity-layer/evm/forge/modules/",
Expand Down
2 changes: 1 addition & 1 deletion evm/src/assets/SwapLayerBase.sol
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import "@openzeppelin/token/ERC20/IERC20.sol";
import "@openzeppelin/token/ERC20/utils/SafeERC20.sol";

import "wormhole-sdk/interfaces/IWormhole.sol";
import "wormhole-sdk/interfaces/token/IPermit2.sol";
import "permit2/interfaces/IPermit2.sol";

import {IWETH} from "wormhole-sdk/interfaces/token/IWETH.sol";
import "wormhole-sdk/libraries/BytesParsing.sol";
Expand Down
2 changes: 1 addition & 1 deletion evm/src/assets/SwapLayerInitiate.sol
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import "@openzeppelin/token/ERC20/IERC20.sol";
import "@openzeppelin/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/token/ERC20/extensions/IERC20Permit.sol";

import "wormhole-sdk/interfaces/token/IPermit2.sol";
import "permit2/interfaces/IPermit2.sol";
import { BytesParsing } from "wormhole-sdk/libraries/BytesParsing.sol";

import { checkAddr } from "./Params.sol";
Expand Down
5 changes: 2 additions & 3 deletions evm/test/SLTBase.sol
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,9 @@ import { ERC1967Proxy } from "@openzeppelin/proxy/ERC1967/ERC1967Proxy.sol";
import "@openzeppelin/token/ERC20/IERC20.sol";

import "wormhole-sdk/interfaces/IWormhole.sol";
import "wormhole-sdk/interfaces/token/IWETH.sol";
import "wormhole-sdk/interfaces/token/IUSDC.sol";
import { IWETH } from "wormhole-sdk/interfaces/token/IWETH.sol";
import "wormhole-sdk/proxy/Proxy.sol";
import "wormhole-sdk/testing/UsdcDealer.sol";
import { IUSDC, UsdcDealer } from "wormhole-sdk/testing/UsdcDealer.sol";
import "wormhole-sdk/testing/WormholeCctpSimulator.sol";

import { ITokenRouter } from "liquidity-layer/interfaces/ITokenRouter.sol";
Expand Down

0 comments on commit 1bc0f38

Please sign in to comment.