File tree Expand file tree Collapse file tree 6 files changed +428
-0
lines changed
Expand file tree Collapse file tree 6 files changed +428
-0
lines changed Original file line number Diff line number Diff line change 1+ Subproject commit 443a784dcbe9f87a3eb273126a7ed296df23c6cc
Original file line number Diff line number Diff line change @@ -12,6 +12,8 @@ export type TokenListItem = {
1212 poolId ?: string
1313 isPendlePT ?: boolean
1414 pendleMarket ?: string
15+ isPendleCrossChainPT ?: boolean
16+ pendleCrossChainPTPaired ?: string
1517 }
1618}
1719
Original file line number Diff line number Diff line change 33 StrategyBalmySDK ,
44 StrategyERC4626Wrapper ,
55 StrategyElixir ,
6+ StrategyPendleCrossChainPT ,
67 StrategyRepayWrapper ,
78} from "../strategies"
89
@@ -25,6 +26,10 @@ const avalancheRoutingConfig: ChainRoutingConfig = [
2526 tokensInOrOut : [ SDEUSD_AVALANCHE ] ,
2627 } ,
2728 } ,
29+ {
30+ strategy : StrategyPendleCrossChainPT . name ( ) ,
31+ match : { } ,
32+ } ,
2833 {
2934 strategy : StrategyERC4626Wrapper . name ( ) ,
3035 match : {
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ import { StrategyERC4626Wrapper } from "./strategyERC4626Wrapper"
66import { StrategyElixir } from "./strategyElixir"
77import { StrategyIdleCDOTranche } from "./strategyIdleCDOTranche"
88import { StrategyMidas } from "./strategyMidas"
9+ import { StrategyPendleCrossChainPT } from "./strategyPendleCrossChainPT"
910import { StrategyRedirectDepositWrapper } from "./strategyRedirectDepositWrapper"
1011import { StrategyRepayWrapper } from "./strategyRepayWrapper"
1112
@@ -20,6 +21,7 @@ export {
2021 StrategyRedirectDepositWrapper ,
2122 StrategyConnect2 ,
2223 StrategyElixir ,
24+ StrategyPendleCrossChainPT ,
2325}
2426
2527export const strategies = {
@@ -33,4 +35,5 @@ export const strategies = {
3335 [ StrategyRedirectDepositWrapper . name ( ) ] : StrategyRedirectDepositWrapper ,
3436 [ StrategyConnect2 . name ( ) ] : StrategyConnect2 ,
3537 [ StrategyElixir . name ( ) ] : StrategyElixir ,
38+ [ StrategyPendleCrossChainPT . name ( ) ] : StrategyPendleCrossChainPT ,
3639}
You can’t perform that action at this time.
0 commit comments