Skip to content
This repository was archived by the owner on Mar 11, 2025. It is now read-only.

Commit 9df8b94

Browse files
authored
fix: Update SwapAdapter.sol toEth (#282)
1 parent b30cabd commit 9df8b94

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

contracts/adapters/SwapAdapter.sol

+3-2
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ contract SwapAdapter is AccessControl {
2727
address public immutable _weth;
2828
IUniversalRouter public immutable _swapRouter;
2929
INativeTokenAdapter public immutable _nativeTokenAdapter;
30+
bytes32 public immutable _nativeResourceID;
3031
IPermit2 public immutable _permit2;
3132

3233
mapping(address => bytes32) public tokenToResourceID;
@@ -76,6 +77,7 @@ contract SwapAdapter is AccessControl {
7677
_swapRouter = swapRouter;
7778
_permit2 = permit2;
7879
_nativeTokenAdapter = nativeTokenAdapter;
80+
_nativeResourceID = nativeTokenAdapter._resourceID();
7981
IERC20(_weth).approve(address(_permit2), type(uint256).max);
8082
_setupRole(DEFAULT_ADMIN_ROLE, msg.sender);
8183
}
@@ -115,8 +117,7 @@ contract SwapAdapter is AccessControl {
115117
uint24[] calldata pathFees
116118
) external {
117119
LocalVars memory vars;
118-
vars.resourceID = tokenToResourceID[token];
119-
if (vars.resourceID == bytes32(0)) revert TokenInvalid();
120+
vars.resourceID = _nativeResourceID;
120121

121122
// Compose depositData
122123
vars.depositDataAfterAmount = abi.encodePacked(

contracts/adapters/interfaces/INativeTokenAdapter.sol

+2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ pragma solidity 0.8.11;
77
@author ChainSafe Systems.
88
*/
99
interface INativeTokenAdapter {
10+
function _resourceID() external view returns(bytes32);
11+
1012
function depositToEVM(
1113
uint8 destinationDomainID,
1214
address recipientAddress

0 commit comments

Comments
 (0)