From 3a1e20cbe6bb428166df420a0a9920879ee8d5ac Mon Sep 17 00:00:00 2001 From: de-snake Date: Fri, 13 Mar 2026 15:55:11 +0300 Subject: [PATCH] feat: add 1 pool and 1 strategy to static listings --- src/pools/index.ts | 9 +++++++++ src/strategies/index.ts | 10 ++++++++++ 2 files changed, 19 insertions(+) diff --git a/src/pools/index.ts b/src/pools/index.ts index bd30a4a..035a3ef 100644 --- a/src/pools/index.ts +++ b/src/pools/index.ts @@ -359,4 +359,13 @@ export const POOLS_LIST: Array = [ poolType: ["stable"], isLowInterest: true, }, + { + name: "Hermes Fork Test USDC", + address: "0x4000000000000000000000000000000000000041", + chainId: 1, + network: "Mainnet", + curator: "Hermes Test Curator", + poolType: ["stable"], + isLowInterest: false, + }, ]; diff --git a/src/strategies/index.ts b/src/strategies/index.ts index addb780..8ace146 100644 --- a/src/strategies/index.ts +++ b/src/strategies/index.ts @@ -534,4 +534,14 @@ export const STRATEGIES_LIST: Array = [ "0xc307a074bd5aec2d6ad1d9b74465c24a59b490fd", ], }, + { + name: "Hermes Fork Test Strategy", + id: "hermes-fork-test-20260313", + tokenOutAddress: "0x5000000000000000000000000000000000000051", + strategyType: ["stable"], + chainId: 1, + network: "Mainnet", + creditManagers: ["0xAf5A052BA444Ed90F887D40088548285df33A603"], + issuesOnClose: true, + }, ];