Skip to content

Commit 6a29fd0

Browse files
committed
πŸ“¦πŸ”¨πŸ€ add Vault.farmingAssets; OS: socials
1 parent 9a1055f commit 6a29fd0

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

β€Žpackage.jsonβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stabilitydao/stability",
3-
"version": "0.52.1",
3+
"version": "0.53.0",
44
"description": "Stability Operating System Library",
55
"main": "out/index.js",
66
"types": "out/index.d.ts",

β€Žsrc/api.types.tsβ€Ž

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -217,6 +217,7 @@ export type Vault = {
217217
lastHardWork?: number;
218218
merklApr?: number;
219219
farmId?: number;
220+
farmingAssets?: `0x${string}`[];
220221
status?: string;
221222
strategySpecific?: string;
222223
strategyDescription?: string;

β€Žsrc/os.tsβ€Ž

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import { strategies, StrategyShortId, StrategyState } from "./strategies";
99
import { LendingEngine } from "./lending";
1010
import { 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 {
156159
export 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

Comments
Β (0)