@@ -9,7 +9,7 @@ import { strategies, StrategyShortId, StrategyState } from "./strategies";
99import { LendingEngine } from "./lending" ;
1010import { ArtifactType , IBuilderActivity } from "./activity/builder" ;
1111
12- export const STABILITY_OS_TYPES_VERSION = "v2025.11.22 " ;
12+ export const STABILITY_OS_TYPES_VERSION = "v2025.11.30 " ;
1313
1414/**
1515 Represents a DAO running on Stability OS.
@@ -19,6 +19,9 @@ export interface IDAO {
1919 /** Name of the DAO, used in token names. Without DAO word. */
2020 name : string ;
2121
22+ /** Community socials */
23+ socials : string [ ] ;
24+
2225 /** Activities of the organization. */
2326 activity : Activity [ ] ;
2427
@@ -156,6 +159,11 @@ export function getUnitById(unitId: string): IUnit | undefined {
156159export const daos : IDAO [ ] = [
157160 {
158161 name : "Stability" ,
162+ socials : [
163+ "https://x.com/stabilitydao" ,
164+ "https://discord.com/invite/R3nnetWzC9" ,
165+ "https://t.me/stabilitydao" ,
166+ ] ,
159167 activity : [ Activity . DEFI_PROTOCOL_OPERATOR ] ,
160168 tokenization : {
161169 state : TokenizationState . LIVE_VESTING ,
@@ -237,6 +245,7 @@ export const daos: IDAO[] = [
237245 } ,
238246 {
239247 name : "DeFi Builder" ,
248+ socials : [ ] ,
240249 activity : [ Activity . BUILDER , Activity . SAAS_OPERATOR ] ,
241250 tokenization : {
242251 state : TokenizationState . DRAFT ,
@@ -505,6 +514,7 @@ export const daos: IDAO[] = [
505514 } ,
506515 {
507516 name : "MEV Fighter" ,
517+ socials : [ ] ,
508518 activity : [ Activity . BUILDER , Activity . MEV_SEARCHER ] ,
509519 tokenization : {
510520 state : TokenizationState . DRAFT ,
0 commit comments