-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: includes memory location for bytes in tempest decoder. Also earn…
…ETHSwell decoder
- Loading branch information
1 parent
c169888
commit f8151e9
Showing
2 changed files
with
30 additions
and
2 deletions.
There are no files selected for viewing
28 changes: 28 additions & 0 deletions
28
src/base/DecodersAndSanitizers/EarnETHSwellDecoderAndSanitizer.sol
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,28 @@ | ||
// SPDX-License-Identifier: MIT | ||
pragma solidity 0.8.21; | ||
|
||
import { BaseDecoderAndSanitizer } from "./BaseDecoderAndSanitizer.sol"; | ||
import { NativeWrapperDecoderAndSanitizer } from "./Protocols/NativeWrapperDecoderAndSanitizer.sol"; | ||
import { UniswapV3DecoderAndSanitizer } from "src/base/DecodersAndSanitizers/Protocols/UniswapV3DecoderAndSanitizer.sol"; | ||
import { MasterChefV3DecoderAndSanitizer } from | ||
"src/base/DecodersAndSanitizers/Protocols/MasterChefV3DecoderAndSanitizer.sol"; | ||
import { PendleRouterDecoderAndSanitizer } from | ||
"src/base/DecodersAndSanitizers/Protocols/PendleRouterDecoderAndSanitizer.sol"; | ||
|
||
import { TempestDecoderAndSanitizer } from "src/base/DecodersAndSanitizers/Protocols/TempestDecoderAndSanitizer.sol"; | ||
|
||
contract EarnETHSwellDecoderAndSanitizer is | ||
NativeWrapperDecoderAndSanitizer, | ||
UniswapV3DecoderAndSanitizer, | ||
MasterChefV3DecoderAndSanitizer, | ||
PendleRouterDecoderAndSanitizer, | ||
TempestDecoderAndSanitizer | ||
{ | ||
constructor( | ||
address _boringVault, | ||
address _uniswapV3NonFungiblePositionManager | ||
) | ||
UniswapV3DecoderAndSanitizer(_uniswapV3NonFungiblePositionManager) | ||
BaseDecoderAndSanitizer(_boringVault) | ||
{ } | ||
} |
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