Skip to content

Commit 62a08cd

Browse files
authored
Merge pull request #265 from Gearbox-protocol/remove-pools
fix: remove pools from config
2 parents 45f47cf + 4747edd commit 62a08cd

File tree

2 files changed

+0
-23
lines changed

2 files changed

+0
-23
lines changed

src/core/pools.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@ export interface PoolConfigPayload {
2121
poolType: [TokenTypePool];
2222
// is used hide pools with low interest checkbox on the main page
2323
isLowInterest?: boolean;
24-
// is used to show pools only on curator domain
25-
curatorDomainOnly?: boolean;
2624
}
2725

2826
type Address = `0x${string}`;

src/pools/index.ts

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -336,25 +336,4 @@ export const POOLS_LIST: Array<PoolConfigPayload> = [
336336
poolType: ["stable"],
337337
isLowInterest: true,
338338
},
339-
340-
{
341-
name: "Invariant USDC",
342-
address: "0xa561d6d554fb3637f590c4d73527fe19525d596b",
343-
chainId: 5031,
344-
network: "Somnia",
345-
curator: "Invariant Group",
346-
poolType: ["stable"],
347-
isLowInterest: true,
348-
curatorDomainOnly: true,
349-
},
350-
{
351-
name: "Invariant SOMI",
352-
address: "0x6f652fbcfc2107ef9c99456311b5650cd52d6419",
353-
chainId: 5031,
354-
network: "Somnia",
355-
curator: "Invariant Group",
356-
poolType: ["somi"],
357-
isLowInterest: true,
358-
curatorDomainOnly: true,
359-
},
360339
];

0 commit comments

Comments
 (0)