Skip to content

Commit ff6e075

Browse files
committed
fix wUSDL config
1 parent 0844a36 commit ff6e075

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

src/swapService/config/mainnet.ts

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ const mainnetRoutingConfig: ChainRoutingConfig = [
3232
{
3333
strategy: StrategyERC4626Wrapper.name(),
3434
match: {
35-
tokensInOrOut: [WSTUSR_MAINNET, WUSDL_MAINNET, PT_WSTUSR1740182579],
35+
tokensInOrOut: [WSTUSR_MAINNET, PT_WSTUSR1740182579],
3636
excludeTokensInOrOut: [PT_WSTUSR_27MAR2025_MAINNET],
3737
},
3838
},
@@ -90,7 +90,12 @@ const mainnetRoutingConfig: ChainRoutingConfig = [
9090
strategy: StrategyCombinedUniswap.name(),
9191
match: {
9292
swapperModes: [SwapperMode.TARGET_DEBT],
93-
excludeTokensInOrOut: [RLP_MAINNET, SUSDS_MAINNET, USD0PLUSPLUS_MAINNET],
93+
excludeTokensInOrOut: [
94+
RLP_MAINNET,
95+
SUSDS_MAINNET,
96+
USD0PLUSPLUS_MAINNET,
97+
WUSDL_MAINNET,
98+
],
9499
},
95100
},
96101
// FALLBACKS

src/swapService/strategies/strategyBalmySDK.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ import { TokenlistMetadataSource } from "./balmySDK/tokenlistMetadataSource"
4343
const DAO_MULTISIG = "0xcAD001c30E96765aC90307669d578219D4fb1DCe"
4444
const DEFAULT_TIMEOUT = "30000"
4545
// TODO config
46-
const BINARY_SEARCH_EXCLUDE_SOURCES = ["paraswap"] // paraswap is rate limited and fails if selected as best source for binary search
46+
const BINARY_SEARCH_EXCLUDE_SOURCES = [] // paraswap is rate limited and fails if selected as best source for binary search
4747

4848
type SourcesFilter =
4949
| Either<

0 commit comments

Comments
 (0)