This repository was archived by the owner on Mar 11, 2025. It is now read-only.
File tree 2 files changed +5
-2
lines changed
2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ contract SwapAdapter is AccessControl {
27
27
address public immutable _weth;
28
28
IUniversalRouter public immutable _swapRouter;
29
29
INativeTokenAdapter public immutable _nativeTokenAdapter;
30
+ bytes32 public immutable _nativeResourceID;
30
31
IPermit2 public immutable _permit2;
31
32
32
33
mapping (address => bytes32 ) public tokenToResourceID;
@@ -76,6 +77,7 @@ contract SwapAdapter is AccessControl {
76
77
_swapRouter = swapRouter;
77
78
_permit2 = permit2;
78
79
_nativeTokenAdapter = nativeTokenAdapter;
80
+ _nativeResourceID = nativeTokenAdapter._resourceID ();
79
81
IERC20 (_weth).approve (address (_permit2), type (uint256 ).max);
80
82
_setupRole (DEFAULT_ADMIN_ROLE, msg .sender );
81
83
}
@@ -115,8 +117,7 @@ contract SwapAdapter is AccessControl {
115
117
uint24 [] calldata pathFees
116
118
) external {
117
119
LocalVars memory vars;
118
- vars.resourceID = tokenToResourceID[token];
119
- if (vars.resourceID == bytes32 (0 )) revert TokenInvalid ();
120
+ vars.resourceID = _nativeResourceID;
120
121
121
122
// Compose depositData
122
123
vars.depositDataAfterAmount = abi.encodePacked (
Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ pragma solidity 0.8.11;
7
7
@author ChainSafe Systems.
8
8
*/
9
9
interface INativeTokenAdapter {
10
+ function _resourceID () external view returns (bytes32 );
11
+
10
12
function depositToEVM (
11
13
uint8 destinationDomainID ,
12
14
address recipientAddress
You can’t perform that action at this time.
0 commit comments