File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed
Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff 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
2628type Address = `0x${string } `;
Original file line number Diff line number Diff 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] ;
You can’t perform that action at this time.
0 commit comments