Skip to content

Commit 45f47cf

Browse files
authored
Merge pull request #264 from Gearbox-protocol/pool-curator-domain
feat: pool curator domain
2 parents 4bb4a3f + 830254f commit 45f47cf

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

src/core/pools.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ 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;
2426
}
2527

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

src/pools/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -345,6 +345,7 @@ export const POOLS_LIST: Array<PoolConfigPayload> = [
345345
curator: "Invariant Group",
346346
poolType: ["stable"],
347347
isLowInterest: true,
348+
curatorDomainOnly: true,
348349
},
349350
{
350351
name: "Invariant SOMI",
@@ -354,5 +355,6 @@ export const POOLS_LIST: Array<PoolConfigPayload> = [
354355
curator: "Invariant Group",
355356
poolType: ["somi"],
356357
isLowInterest: true,
358+
curatorDomainOnly: true,
357359
},
358360
];

0 commit comments

Comments
 (0)