Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@stabilitydao/stability",
"version": "0.52.1",
"version": "0.53.0",
"description": "Stability Operating System Library",
"main": "out/index.js",
"types": "out/index.d.ts",
Expand Down
1 change: 1 addition & 0 deletions src/api.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,7 @@ export type Vault = {
lastHardWork?: number;
merklApr?: number;
farmId?: number;
farmingAssets?: `0x${string}`[];
status?: string;
strategySpecific?: string;
strategyDescription?: string;
Expand Down
12 changes: 11 additions & 1 deletion src/os.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { strategies, StrategyShortId, StrategyState } from "./strategies";
import { LendingEngine } from "./lending";
import { ArtifactType, IBuilderActivity } from "./activity/builder";

export const STABILITY_OS_TYPES_VERSION = "v2025.11.22";
export const STABILITY_OS_TYPES_VERSION = "v2025.11.30";

/**
Represents a DAO running on Stability OS.
Expand All @@ -19,6 +19,9 @@ export interface IDAO {
/** Name of the DAO, used in token names. Without DAO word. */
name: string;

/** Community socials */
socials: string[];

/** Activities of the organization. */
activity: Activity[];

Expand Down Expand Up @@ -156,6 +159,11 @@ export function getUnitById(unitId: string): IUnit | undefined {
export const daos: IDAO[] = [
{
name: "Stability",
socials: [
"https://x.com/stabilitydao",
"https://discord.com/invite/R3nnetWzC9",
"https://t.me/stabilitydao",
],
activity: [Activity.DEFI_PROTOCOL_OPERATOR],
tokenization: {
state: TokenizationState.LIVE_VESTING,
Expand Down Expand Up @@ -237,6 +245,7 @@ export const daos: IDAO[] = [
},
{
name: "DeFi Builder",
socials: [],
activity: [Activity.BUILDER, Activity.SAAS_OPERATOR],
tokenization: {
state: TokenizationState.DRAFT,
Expand Down Expand Up @@ -505,6 +514,7 @@ export const daos: IDAO[] = [
},
{
name: "MEV Fighter",
socials: [],
activity: [Activity.BUILDER, Activity.MEV_SEARCHER],
tokenization: {
state: TokenizationState.DRAFT,
Expand Down