Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/core/strategy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ export type TokenTypeStrategy =
| "stable"
| "wbnb"
| "wxtz"
| "pt"
| "bfBTC";

export interface StrategyConfigPayload {
Expand All @@ -20,7 +21,7 @@ export interface StrategyConfigPayload {
// if the chain doesn't have credit managers - strategy won't be shown on that chain
creditManagers: Array<Address>;
// strategy type; used for filtering
strategyType: [TokenTypeStrategy];
strategyType: TokenTypeStrategy[];

/*
undefined - released
Expand Down
12 changes: 6 additions & 6 deletions src/strategies/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ export const STRATEGIES_LIST: Array<StrategyConfigPayload> = [
name: "Pendle PT USDe (15 Jan 2026)",
id: "PT-USDe-15JAN2026",
tokenOutAddress: "0x93b544c330f60a2aa05ced87aeeffb8d38fd8c9a",
strategyType: ["stable"],
strategyType: ["pt"],
chainId: 9745,
network: "Plasma",
creditManagers: [
Expand All @@ -96,7 +96,7 @@ export const STRATEGIES_LIST: Array<StrategyConfigPayload> = [
name: "Pendle PT sUSDe (15 Jan 2026)",
id: "PT-sUSDe-15JAN2026",
tokenOutAddress: "0x02fcc4989b4c9d435b7ced3fe1ba4cf77bbb5dd8",
strategyType: ["stable"],
strategyType: ["pt"],
chainId: 9745,
network: "Plasma",
creditManagers: [
Expand All @@ -111,7 +111,7 @@ export const STRATEGIES_LIST: Array<StrategyConfigPayload> = [
name: "Pendle PT syrupUSDT (29 Jan 2026)",
id: "PT-syrupUSDT-29JAN2026",
tokenOutAddress: "0x8dfb9a39dfab16bffe77f15544b5bf03e377e419",
strategyType: ["stable"],
strategyType: ["pt"],
chainId: 9745,
network: "Plasma",
creditManagers: [
Expand Down Expand Up @@ -194,7 +194,7 @@ export const STRATEGIES_LIST: Array<StrategyConfigPayload> = [
name: "Pendle PT pUSDe 16 Oct 2025",
id: "PT-pUSDe-16OCT2025",
tokenOutAddress: "0xf3f491e5608f8b8a6fd9e9d66a4a4036d7fd282c",
strategyType: ["stable"],
strategyType: ["pt"],
chainId: 1,
network: "Mainnet",
creditManagers: [
Expand Down Expand Up @@ -393,7 +393,7 @@ export const STRATEGIES_LIST: Array<StrategyConfigPayload> = [
name: "Pendle PT USDai (19 Mar 2026)",
id: "PT-USDai-19MAR2026",
tokenOutAddress: "0xd516188daf64efa04a8d60872f891f2cc811a561",
strategyType: ["stable"],
strategyType: ["pt"],
chainId: 9745,
network: "Plasma",
creditManagers: [
Expand All @@ -408,7 +408,7 @@ export const STRATEGIES_LIST: Array<StrategyConfigPayload> = [
name: "Pendle PT sUSDai (19 Mar 2026)",
id: "PT-sUSDai-19MAR2026",
tokenOutAddress: "0xedac81b27790e0728f54dea3b7718e5437e85353",
strategyType: ["stable"],
strategyType: ["pt"],
chainId: 9745,
network: "Plasma",
creditManagers: [
Expand Down