Skip to content

Commit f307b06

Browse files
committed
update config
1 parent 10409ad commit f307b06

File tree

2 files changed

+10
-9
lines changed

2 files changed

+10
-9
lines changed

src/common/utils/viemClients.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,7 @@ export const createClients = (): Record<number, Client<Transport, Chain>> => ({
140140
transport: http(RPC_URLS[chains.foundry.id]),
141141
}),
142142
[chains.arbitrum.id]: createChainConfig(chains.arbitrum),
143+
[chains.base.id]: createChainConfig(chains.base),
143144
[sonicnetwork.id]: createClient({
144145
chain: sonicnetwork,
145146
transport: http(RPC_URLS[sonicnetwork.id]),

src/swapService/config/base.ts

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ import {
55
StrategyMidas,
66
StrategyRepayWrapper,
77
} from "../strategies"
8-
const YOUSD_BASE = "0x0000000f2eB9f69274678c76222B35eEc7588a65"
9-
const YOETH_BASE = "0x3A43AEC53490CB9Fa922847385D82fe25d0E9De7"
10-
const YOBTC_BASE = "0xbCbc8cb4D1e8ED048a6276a5E94A3e952660BcbC"
8+
// const YOUSD_BASE = "0x0000000f2eB9f69274678c76222B35eEc7588a65"
9+
// const YOETH_BASE = "0x3A43AEC53490CB9Fa922847385D82fe25d0E9De7"
10+
// const YOBTC_BASE = "0xbCbc8cb4D1e8ED048a6276a5E94A3e952660BcbC"
1111

1212
const baseRoutingConfig: ChainRoutingConfig = [
1313
// WRAPPERS
@@ -23,12 +23,12 @@ const baseRoutingConfig: ChainRoutingConfig = [
2323
strategy: StrategyMidas.name(),
2424
match: {}, // supports function will match mTokens
2525
},
26-
{
27-
strategy: StrategyERC4626Wrapper.name(),
28-
match: {
29-
tokensInOrOut: [YOUSD_BASE, YOETH_BASE, YOBTC_BASE],
30-
},
31-
},
26+
// {
27+
// strategy: StrategyERC4626Wrapper.name(),
28+
// match: {
29+
// tokensInOrOut: [YOUSD_BASE, YOETH_BASE, YOBTC_BASE],
30+
// },
31+
// },
3232
// DEFAULTS
3333
{
3434
strategy: StrategyBalmySDK.name(),

0 commit comments

Comments
 (0)